Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #872046

    nickharambee
    Participant

    Hi,

    I’d like to be able to fade in the divs of each tab on this page as I select the tab:

    http://open-dialogue.net/training/foundation/

    How would I go about doing this?

    Thanks,

    Nick

    #872055

    nickharambee
    Participant

    Oh, and while I’m at it, how to change the colour of the tab navigation panels on hover?

    Thanks,

    Nick

    #872684

    Paul R
    Moderator

    Hi Nick,

    You can add this under Custom > CSS in the Customizer.

    
    /* tab color on hover */
    .x-nav-tabs>li>a:hover {
        background-color: red;
    }
    /* default background color */
    .x-nav-tabs>li>a {
        background-color: blue;
    }
    

    Change red and blue with the color that you like

    Hope that helps.