Quote:
|
* { margin: 0; padding: 0; }
|
That zeroes out the margins and padding for EVERY single element, and it is not a good way to do this, unfortunately. While you do want to zero out margins and padding, using the * is not recommended, it can cause problems. Better to use a css reset instead.
Quote:
|
added images instead of text for the menu.
|
Why ? You destroyed the accessibility of the menu and search engine spiders can't read images!
1 - validate your code first! You have a lot of errors, including some invalidly nested codes, missing tags, etc. Fix that first.
2 - Forget the XHTML doctype unless you're going to learn what the rules are for using it. Your code isn't even close to XHTML. Drop it back to at LEAST HTML 4.01 STRICT if you don't want to follow the XHTML rules.
3 - In Firefox, and probably other browsers, your menu is getting lost behind your flash. Set your swf to wmode=transparent and that should fix it.
4 - dump the tables for layout.
I'm not seeing any italics except for the <h3> with the <em> wrapped around it underneath the flash.
Your menu doesn't work at all in IE6.
__________________
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
|