Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1414889

    Mbzo
    Participant

    Hi, I changed the Integrity (light) navbar background to a dark color for greater contrast and main navbar links are white on hover. Submenu link color is defined in custom css panel.
    But this created an unexpected problem with the visibility of a submenu parent item that has children.
    This item changes to white (inherited from main navbar link) when the third level dropdown menu is open.
    I want the parent item to stay visible or not change color.
    Here are some screenshots to explain:

    #1414891

    Mbzo
    Participant
    This reply has been marked as private.
    #1415106

    Thai
    Moderator

    Hi There,

    Please add the following CSS:

    .x-navbar .desktop .sub-menu .x-active > a {
        color: #000;
    }

    Hope it helps 🙂

    #1416537

    Mbzo
    Participant

    Thanks but it didn’t work. When the 3rd level dropdown is visible the second level parent item remains blank.

    #1417144

    Prasant Rai
    Moderator

    Hello There,

    Please use following CSS and let us know how it goes:

    .x-navbar .desktop .sub-menu a:hover, .x-navbar .desktop .sub-menu .x-active > a {
        color: #999;
    }

    Thanks.

    #1417727

    Mbzo
    Participant

    Not yet.
    Here is a screenshot:

    #1417729

    Mbzo
    Participant
    This reply has been marked as private.
    #1417857

    Joao
    Moderator

    HI There,

    Please add the following code to Appereance Customizer Custom CSS

    .x-navbar .desktop .sub-menu a:hover, .x-navbar .desktop .sub-menu .x-active > a {
    color: grey !important;
    }

    Hope it helps

    Joao

    #1428952

    Mbzo
    Participant

    Thanks, Joao. That did it.

    #1428970

    Nabeel A
    Moderator

    Glad we could help!