Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #84810
    husker
    Participant

    Where do I find where i can make the parent menu link inactive but have child menu active items under it?

    I want to Make the page About be inactive in the menu.

    http://bayareahuskers.org/wp/

    Brian

    #84812
    Pratik
    Participant

    Hi @husker,
    To make parent menu inactive when child menu is active, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:

    
    .catchresponsive-nav-menu .current-menu-item > a, 
    .catchresponsive-nav-menu .current-menu-ancestor > a, 
    .catchresponsive-nav-menu .current_page_item > a, 
    .catchresponsive-nav-menu .current_page_ancestor > a, 
    .sidebar-header-right .widget_nav_menu .current-menu-item > a 
    {
        background-color: #cc0c2f;
        color: #fff;
    }
    
    

    Let me know how it goes.

    Regards,
    Pratik

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Make Parent Menu Link Inactivbe’ is closed to new replies.