[Resolved] Template Dispatch

Home Forums Support [Resolved] Template Dispatch

Home Forums Support Template Dispatch

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1101222
    Daniel

    I would like to disappear the black line when selecting a button in the menu bar.

    #1101234
    David
    Staff
    Customer Support

    Hi there,

    delete this CSS in the Customizer > Additional CSS:

    @media (min-width: 769px) {
        .main-navigation ul li {
            position: relative;
        }
    
        .main-navigation ul li:after {
            content: '';
            position: absolute;
            height: 0;
            width: 100%;
            bottom: 0;
            left: 0;
            pointer-events: none;
            filter: hue-rotation(90deg);
            -webkit-filter: hue-rotation(90deg);
            -webkit-transition: height 0.35s ease;
            transition: height 0.35s ease;
        }
    
        .main-navigation ul li:hover:after, .main-navigation ul li.current-menu-item:after {
            height: 6px;
        }
    }
    #1101268
    Daniel

    Thanks David…

    #1101287
    David
    Staff
    Customer Support

    You’re welcome

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