|
It IS working in Firefox, as usual, IE gets it WRONG, so adjust your perception. IE is the LEAST standards compliant, and tends to do many things it's own way and not the way more standards-compliant browsers like Firefox, Safari, and Opera do.
It appears you commented out the DOCTYPE declaration, you MUST have that, uncomment it ! Without that, IE operates in QUIRKS MODE - which is generally a mess.
You have a .nav class for your UL, but you have no properties for it. Add this:
ul.nav{margin: 0; padding: 0;}
That will get rid of the default margins and padding. You need to also zero out the margins and padding on <body>, and NOT use that inline 'leftmargin=0' nonsense that's in there now.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|