Results 1 to 5 of 5

Thread: Problem with Tab Panels

  1. #1
    Join Date
    Aug 2006
    Posts
    28
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Problem with Tab Panels

    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...

  2. #2
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    IE only allows the hoversuedo class for links, that's probably why.
    - Mike

  3. #3
    Join Date
    Aug 2006
    Posts
    28
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default background images

    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

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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

  5. #5
    Join Date
    Aug 2006
    Posts
    28
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    thanks that works!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •