I need to swap the visual order of 2 elements using CSS
HTML order:
<div id="text-content">
....
</div>
<div id="header-image">
....
</div>
Visual order required:
______________________
| image |
| (fixed height) |
|______________________|
______________________
| text |
| (variable height) |
|______________________|
I can't seem to get them to display properly. I have full access to XHTML and CSS, just need to swap the visual order for SEO purposes, while keeping the text as far up the code as possible. Cheers...