Okay
  Public Ticket #1369143
Change Color menu and link
Closed

Comments

  • coralinega started the conversation

    Hello or can I change the colors of the links and the menu thank you

  • [deleted] replied

    Hello.

    To change the color of links in the menu and all the others, you can add custom styles here:

    Appearance->Customize->Additional CSS

    For example:

    a {
    color: #cc4700!important;
    }
    a:focus, a:hover {
        color: #cc4700!important;
    }
    .nk-navbar .active>.link-effect-2, .nk-navbar .active>.link-effect-3, .nk-navbar .link-effect-2, .nk-navbar .link-effect-2 .link-effect-shade, .nk-navbar .link-effect-3, .nk-navbar .link-effect-3 .link-effect-shade {
     color: #cc4700!important;
    }

    In this case, all entities with <a> link tag will be colored in a given color (orange)