grey line under menu bar

Hi,

Can i remove the little grey line under the menu? I want it all white.

Hi @evelinassa,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

nav.navbar.navbar-default {
    box-shadow: none;
}

Best Regards,
Movin

Thanks, it works! there is still a grey line in the “comments” page, can i remove this one as well?

You are most welcome here :slight_smile:

there is still a grey line in the “comments” page, can i remove this one as well?

You can use the below CSS code to remove that line displayed above post title.

#page .cat-title {
    border-bottom: 0;
}