• Hi Kadence Team, is it possible to make the primary navigation layout like the Virtue Theme layout. I mean that the back and hover color is white and the font color is changing?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Sure, you can use css to make the menu text color change.
    for example:

    .kad-primary-nav ul.sf-menu a:hover {
        color: blue;
    }

    Kadence Themes

    Thread Starter sollicitant

    (@sollicitant)

    Super, does this work for the dropdown menu also?

    For that you can use this css:

    .none-trans-header .kad-primary-nav ul.sf-menu ul li a:hover, .trans-header .kad-primary-nav ul.sf-menu ul li
    a:hover {
        color: blue;
    }

    Kadence Themes

    Thread Starter sollicitant

    (@sollicitant)

    thank you. Is it possible to make the backgrounds in the dropdown menu white? And that they stay white when youre with the cursor on it. So that only the dropdown menu text color change from black into red?

    Here is CSS that should control the color of the dropdown menus.

    #nav-main ul.sf-menu ul li a:hover {
        background: white;
    }
    
    #nav-main ul.sf-menu ul li a {
        background: white;
    }

    Let me know if that works for you.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘primary navigation menu’ is closed to new replies.