Hi,
Your header was floated so any content that follows the header will try and wrap assuming that there is room. You should have just needed to clear the elements following the header.
As it is the method you are using to centre the header is giving you a large horizontal scrollbar on the viewport which is undesirable. A better method is to use display:inline-block and do this:
Code:
body.header2 header div#header_bottom ul {
float:none;
left:0;
display:inline-block;
}
* html body.header2 header div#header_bottom ul { display:inline }/* ie6 fix*/
*+html body.header2 header div#header_bottom ul { display:inline }/* ie7 fix*/
body.header2 header div#header_bottom ul li { right:0 }
Those pathnames are overkill as ids are unique so you don't need to qualify them with all those elements
Bookmarks