I downloaded a fresh copy of the CSS and applied what you said and indeed it worked great. However, there is one thing that is still lingering on IE. The DIV with class "tab-container" is not being moved to the next line. In other words, it is staying on the same line. I created a simplified version of the plain HTML to verify this and it is
<html> <head> <link rel="stylesheet" type="text/css" href="http://www.stilbuero.de/ jquery/tabs/jquery.tabs.css"> </style> </head> <body> <ul class="tabs-nav"> <li class="" id="tab1"><a href="#remote-tab-6"><span>General (7)</span></a></li> <li class="" id="tab6"><a href="#remote-tab-7"><span>Learning Management (2)</span></a></li> <li class="" id="tab101"><a href="#remote-tab-8"><span>New Tab (0)</span></a></li> <li class="" id="tab103"><a href="#remote-tab-9"><span>clicked (0)</span></a></li> <li class="tabs-selected" id="tab105"><a href="#remote- tab-10"><span>New Tab (0) <img class="closeTab" src="images/ miniclose.GIF" alt="Close" border="0"></span></a></li> <li id="tab106"><a href="#remote-tab-11"><span>New Tab (0)</ span></a></li> </ul> <div style="display: block;" class="tabs-container"> <table align="left"> <tbody><tr><td id="containerContent"> <div id="li0"> <div class="itemWrapper"><table align="center"><tbody><tr><td><img src="images/busy.gif" alt="" align="middle" border="0"></td><td> Loading ... </td></tr></tbody></ table></div> </div> </td></tr> </tbody></table> </div> </body> </html> It could be me. Your thoughts, as always, are most appreciated, - Dave On May 15, 3:02 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Hi, > > > This should be simple, I know, but I'm having problems. Using the > > default stylesheet that accompanies theJqueryTabs example, how do I > > change the color of unselected links? I tried adding a "color:" > > directive to the ".tabs-nav a" class, but to no avail. The links > > still appear as the standard link color in both IE and Firefox. > > > Thanks for any advice, - Dave > > That should have worked. On line 41 ofjquery.tabs.css there is a color > defined, which you can change of course. But if you're saying that links > have the standard color still in both IE and Firefox I pretty much > assume that something is wrong with your CSS. > > -- Klaus