Removing underline hover effect navigation (Uneox template)

Hi,

I am using the Uneox template and want the underline removed from the navigation, hover included. Hope someone can help. I have tried several solutions but nothing works

Thank you in advance!

Regards Haan

@Haan

please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.

.site-nav__link .site-nav__title::before {
    position: relative !important;
}
span.site-nav__title::before {
    height: 0px !important;
}

Thanks!

Hii, @Haan
Paste this code on top of the theme.scss file.

.site-nav__link .site-nav__title::before {
    position: relative !important;
}
span.site-nav__title::before {
    height: 0px !important;
}

Thank You.