tobybowes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivSo’s not to leave this thread unanswered, I got the desired effect answered over at sitepoint, its not perfect but does the job.
http://www.sitepoint.com/forums/showthread.php?883631-CSS-Floating-Divs-to-the-bottom-inside-a-Div
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivDuring my hunt for an answer to this ive heard alot about negative margins or applying js to the art-image to send it to the bottom but neither have been explained from what ive found. The positioning that you showed me first is the closest I’ve got to an answer but with no wrapping it again is no good.
Thanks for all your help I shall pop over there and see if they can help
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivThanks for the help but that doesn’t work, placing it at the beginning puts it in the top-right and wraps the full paragraph, placing it in the middle puts the first part of the paragraph above and then wraps the remaining with it in the top-right, and placing it at the end but still inside the paragraph places it below the paragraph again in the top right.
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivThat cuts the paragraph and inserts it in the top right on the next part again. Re-uploaded
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivIts now aligned below the paragraph not wrapping in the corner. Re-uploaded
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivThats got the art-image to the right spot again, but it doesn’t wrap the text regardless of wether I leave the float element in or not (I think the position element just overwrites it if its left in). Re-uploaded results.
Forum: Themes and Templates
In reply to: CSS Floating Divs to the bottom inside a DivSorry neither of them worked, just quickly typed out a dummy code and uploaded it on the link below. The blue div is currently float right and wrapping text, but I need to move it to the bottom right corner remembering the height is variable.
http://www.tobybowes.karoo.net/test/tester.html
I can implement any further ideas and re upload to show the results if working or not.
Thanks for the help so far anyways!
James (tobybowes)Forum: Fixing WordPress
In reply to: Turning Category Lists into separate divsThanks that works perfect!
Forum: Fixing WordPress
In reply to: Turning Category Lists into separate divsThat’s great thanks, the only thing is it seems to create an one final empty div after its finished?
To get a little more advanced is it possible to alternate the class? Ive done it previously with my posts using the something similar to the following code, but ive just tried implementing it on to this code and it doesn’t work.
<?php /* variable for alternating post styles */ $altpostclass = 'left'; ?> <div class="cat-button <?php echo $altpostclass; ?>">POST FROM THE LOOP</div> <?php /* Changes every other post to a different class */ if ('left' == $altpostclass) $altpostclass = 'right'; else $altpostclass = 'left'; ?>It does do something though because in the source code it displays
<div class="cat-button <?php echo left; ?>"></div>Thanks for your help, I cant believe how quickly I got a response!!