[Resolved] Addition to the menu in the library

Home Forums Support [Resolved] Addition to the menu in the library

Home Forums Support Addition to the menu in the library

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #593702
    Anna

    Hi, I would like to know where in the personalization settings you can set the add-on displayed when you hover in the menu. As it is used in the site library generate press – Artisan template, Pivot Mike Oliver.

    Thank you for your help

    #593796
    David
    Staff
    Customer Support

    Hi there, i am a little unclear as to the question. Do you mean the change in menu item color?

    #593906
    Anna

    Mainly I mean this line that appears after hovering the cursor in the menu in Artisan.

    #593928
    David
    Staff
    Customer Support

    Hi Anna, that uses this CSS:

    .main-navigation .menu > .menu-item > a::after {
        content: "";
        position: absolute;
        right: 50;
        left: 50%;
        top: 0px;
        -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 > a:hover::after,
    .main-navigation .menu > .menu-item > a:focus::after,
    .main-navigation .menu > .current-menu-item > a::after{
        width: 30px;
    }
    #593961
    Anna

    Thank you very much!

    #593963
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.