|
GEEZZ.. get rid of that horrid <font> tag ! Use the CSS to style your header !
With the addition of the extra button they are too wide to fit inside the container, so IE 'drops' the last one down to where it has room.
You're running into IE's double-float margin bug. This happens when you have an element floated and then you add margin in the same direction. In your case it's this:
#nav li {
width: 7em;
float: left;
margin: 0 0.3em;
padding: 0;
}
Add "display:inline" for IE and it should stop that nonsense.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|