View Single Post
  #2 (permalink)  
Old Aug 31st, 2006, 10:28
ukgeoff ukgeoff is offline
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS Newbie: Firefox alignment problems

Your problem is being caused by the css code indicated below:

#header {
...
float: left;
...
}

Firefox et al are doing what should be done. When you float an element, you take it out of the normal flow of elements on the page.

Remove it and see what happens.
Reply With Quote