Site logo

Archived topic

a colored line under the chosen menu

5 replies · Started by diedrich on November 22, 2020

Viewing posts 1–6 of 6

Hello, how do I make a colored line under the chosen menu in the menu if you choose a sub menu

greeting
Died

Hi there,

can you share a link to your site so i can see what you have so far?

You can underline the Current Parent Menu item with this CSS:

.main-navigation li.current-menu-parent > a {
    text-decoration: underline;
}

Or add a border below the menu item with this:

.main-navigation li.current-menu-parent > a {
    border-bottom: 1px solid #9e0000;
}

This option allows you to change the border thickness and its color

Thank you David !!
thats what I want

greeting Diedrich

Glad to be of help

This archived topic is closed to new replies.