[Support request] Menu: hover menu with line border

Home Forums Support [Support request] Menu: hover menu with line border

Home Forums Support Menu: hover menu with line border

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #746573
    Jagoba

    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!

    #746675
    David
    Staff
    Customer Support

    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%;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.