Okay
  Public Ticket #1540431
Change color behaviour of navigation
Closed

Comments

  •  1
    lunte02 started the conversation

    Hi Anna,
    I've tried it on my own and could wrangel the .mega-menu .dropwown-menu but on the following I failed:

    my client would like to have the main-navigation like that:

    normal: light-grey (as it is)
    hoover: mid-grey
    active: same mid-grey

    How can I achieve that? Could you please enlighten me!?

    Thanks & best regards,
    Lars

  •  608
    WordPress replied

    Hi,

    You can add style css in child theme: 

    @media (min-width: 992px){
        .header-v3 .main-navigation .mega-menu > li > a:hover,
        .header-v3 .main-navigation .mega-menu > li > a:focus,
        .header-v3 .main-navigation .mega-menu > li.current_page_item  > a{
            color: #666a6d !important;
        }
    }
    Anna