Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #336320
    TPGC
    Participant

    I’ve managed to find the correct CSS to change the current menu font colour

    .menu.catchbase-nav-menu .current-menu-item > a {
    color:black;
    }

    But when one of the dropdown menus is selected, the top menu font goes back to blue instead of black. What is the correct CSS code to change the colour to black? http://www.terracepeaks.ca if you need the website.

    #336327
    minal
    Keymaster

    Hello @TPGC

    Here are the CSS snippets for restoring the parent item color

    .menu.catchbase-nav-menu .current-menu-item > a, 
    .menu.catchbase-nav-menu .current-menu-ancestor > a,
    .sidr ul li.current-menu-item> a, 
    .sidr ul li.current-menu-ancestor >a{
    
       color: black;
    
    }

    If you don’t; want  the color on slideout menu you can remove (.sidr ul li.current-menu-item> a, .sidr ul li.current-menu-ancestor >a)
    Change your desire value on the CSS code.
    Hope it works for you !!

    Sincerely,
    Minal

    #336331
    TPGC
    Participant

    Thanks so much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.