Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #89625

    Nabeel A
    Moderator

    You’re welcome Corinne!

    #134529

    Andrew F
    Participant

    This thread has been great, but I need the css to change the background and font colors for the tab navs thats not active.

    #134794

    Christian
    Moderator

    Hey Andrew,

    The CSS for that is

    .x-nav-tabs>li>a {
    color: white;
    background-color: black;
    }
    
    .x-nav-tabs>li>a:hover {
    color: blue;
    background-color: orange;
    }

    Hope that helps. 🙂