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...
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...
IE only allows the hoversuedo class for links, that's probably why.
- Mike
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
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:
Code:#tablist li a.current:hover { color: black; background-color: yellow; }
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
thanks that works!
Bookmarks