Site logo

Archived topic

Menu: hover menu with line border

1 reply · Started by Jagoba on December 3, 2018

Viewing posts 1–2 of 2

Hi,

I would like to have a border in the main menu items when hover and active.
And I dont know how to do it...please, any help?

Many thanks!

Hi there,

this CSS does this with a nice effect:

.main-navigation .menu > .menu-item > a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 50%;
    bottom: 15px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

    display: block;
    width: 0;
    height: 2px;

    background-color: currentColor;
    transition: 0.3s width ease;
}
.main-navigation .menu > .menu-item.current-menu-item > a::after,
.main-navigation .menu > .menu-item > a:hover::after {
    width: 75%;
}
This archived topic is closed to new replies.