View Full Version : Problem with Tab Panels
btelecky
08-14-2006, 02:21 PM
I am trying to figure out why the interactivity of the tabs doesn't work correctly in IE...
http://www.infinetdev.com/DEI/test.aspx
For some reason the "hover" state is overriding the "current" code from the stylesheet...
mburt
08-14-2006, 02:33 PM
IE only allows the hover:psuedo class for links, that's probably why.
btelecky
08-14-2006, 08:24 PM
now that problem doesn't seem to only effect the site in IE, but now Fire Fox is acting strange...
what's with the background image capabilities with Tab Panels??
I tried to incorporate a background image in the stylesheet, and that didn't work
any suggestions would help,
>b
jscheuer1
08-15-2006, 07:32 AM
The :hover pseudo class will override the class .active if it still applies to the element, which it appears to do in your stylesheet. I'd try adding a :hover selector for .active after the initial rule for it like:
#tablist li a.current:hover
{
color: black;
background-color: yellow;
}
btelecky
08-15-2006, 01:40 PM
thanks that works!
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.