Site logo

Archived topic

Menu item

3 replies · Started by Roberto on July 15, 2017

Viewing posts 1–4 of 4

112/5000
Hi guys I need to put a line under the buttons in the main menu in the over state, is it possible? Thanks !!

You could try something like this:

.main-navigation .main-nav > ul > li > a {
    border-bottom: 1px solid transparent;
}

.main-navigation .main-nav > ul > li.current-menu-item > a {
    border-bottom: 1px solid #222222;
}

Thanks Tom, I'm useful, but the line I need in the state over, thanks

Ah, sorry!

.main-navigation .main-nav > ul > li > a {
    border-bottom: 1px solid transparent;
}

.main-navigation .main-nav > ul > li > a:hover {
    border-bottom: 1px solid #222222;
}
This archived topic is closed to new replies.