Here is my scenario: I need to know the best way to change when/where an HTML element is inserted into the page.
What I want to do is to be able to float two content blocks to the right of the #blog-title div. However, in order for float: right to render correctly, these elements (#blog-description and another div) have to come before #blog-title in the HTML. How can I tell Thematic to put them before #blog-title in the HTML source?
(I am using negative margins to position these elements at the moment. It's working, but a lot more "messy" than I want.)