Forum Moderators: not2easy
Is there a way I can push it back to the top, still have it at the bottom of the code for the containing div and have the text still wrap?
thanks
You could put the code for that div at the bottom of the container div but then you have to position it absolute instead of floating it. When you do that your paragraphs of text need a right margin to make room for the positioned div - but then your text won't wrap anymore.
Or you could use a dummy float. An empty div with the right size to make the space in your text and then put the code for your absolute positioned div at the bottom of the container div.