Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #277425

    I have an anchor link in top menu. Anchor is located in footer.

    Menu item has its own css class.

    I can’t hide “active” effect – current li item. border-bottom:0px; is not working.

    #277431

    Hi OblakJ!

    You can hide the “active” bar with:

    
    .av-main-nav li:hover .avia-menu-fx, .current-menu-item > a > .avia-menu-fx, .av-main-nav li:hover .current_page_item>a>.avia-menu-fx{
    display: none;
    }
    

    If you just want to hide it for a specific menu item use the menu item id (or css class like:

    
    li#menu-item-999:hover .avia-menu-fx, li#menu-item-999 > a > .avia-menu-fx, #menu-item-999:hover .current_page_item>a>.avia-menu-fx{
    display: none !important;
    }
    

    (the sample code above will change the styling of the menu item with the id 999).

    Cheers!
    Peter

    #277432

    Second one is a good solution, with one problem.

    Other “currently active” page styling is not styled properly.

    #278031

    Hey!

    Can you post a link to an “active page” where the styling doesn’t work?

    Cheers!
    Peter

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