Hiding the navigation line

Hi!

I would like to hide the blue line in the navigation: https://koulu.wpengine.com/
I tried already with with this:

.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a {
display: none;
}

I got hided, but something went wrong. The whole navigation started to blink.

Thank you in advance.

Hi there,

Please try this code instead:

.x-navbar .desktop .x-nav > li > a:hover, 
.x-navbar .desktop .x-nav > .x-active > a, 
.x-navbar .desktop .x-nav > .current-menu-item > a {
    box-shadow: none;
}

Here are some reference links related to the suggestions above:

Hope this helps.

Thank you, that made a trick :slight_smile:

You’re most welcome, Anni!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.