You've got other problems as well, especially in IE.
You need to get rid of the <embed> method for your flash, it IS going to cause IE users trouble. Since IE lost its EOLAS patent fight, ALL active content on a page with the <embed> tag will require the user to click twice to even SEE your flash. See the sticky on this subject at the top of the HTML forum here.
Your boxes should expand as you add content, however, you need to clear your floats in order for things to work correctly.
http://css-discuss.incutio.com/?page=ClearingSpace
In your code.. you're using a class on the <font> tag ?? Why ?? The <font> tag is deprecated and all presentation should be controlled in your CSS. In addition, you should use proper headings (h1 - h6) rather than styled text. The search engines DO use Heading tags and it's semantically correct.
Why are you doing this ?
padding: 0px;
padding-bottom: 0px;
padding: 0; means ALL padding, your padding-bottom: 0px; is unnecessary.
Your use of vertical-align: top is also incorrect - that only works in tables, it does not vertically align divs.. or anything else.
You could achieve your menu with a lot less hassle by using just CSS, and it would be easier to debug. I don't have the time right now to delve into it.
__________________
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
|