Tabs are working just fine in Firefox. They are not working in IE6 - no big surprise there.
You have to get rid of this for IE
Quote:
|
<?xml version="1.0" encoding="utf-8"?>
|
With that appearing at the top of your document, IE will render your code in QUIRKS mode, and that's a real mess.
You have invalidly nested code on your navigation here:
Quote:
<a href="/"><li id="nav-home">Home</li></a>
<a href="/"><li id="nav-register">Register</li></a>
<a href="/"><li id="nav-community">Community</li></a> <a href="/"><li id="nav-purchase">Purchase</li></a>
<a href="/"><li id="nav-help">Help</li></a>
|
The links need to be INSIDE the <li> tags, not outside them:
<li id="nav-home"><a href="/">Home</a></li>
Fix those things - and your myriad other code errors and see where that leaves you.
__________________
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
|