Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author megamenu

    (@megamenu)

    HI Max,

    I like the effect, but it is so far from the technique we currently use, that I don’t think Max Mega Menu would be a good option to base it on. I think you’d probably need to custom code the whole menu.

    Regards,
    Tom

    Thread Starter maxcburk

    (@maxcburk)

    Tom,

    Thanks for the quick reply! No worries, i thought it might be out of the scope of the plugin.

    However, I have a second question if you don’t mind. See how on my menu the lines are animated under the menu items on hover? How would I make it so there is a dot on the end of each of those lines. Like this pen I made with an SVG:
    https://codepen.io/maximusburkus/pen/poWGQGE

    The code I used to make the lines on my menu was from a previous support forum post (except mine is slightly different so I could disable it on a couple of the menu items):

    @include desktop {
        #{$wrap} #{$menu} > li.mega-menu-item > a.mega-menu-link:after {
            display: block;
            content: "";
            position: absolute;
            bottom: 3px;
            top: auto;
            left: 0;
            width: 0%;
            height: 3px;
            background: #000;
            transition: all 0.6s;
            visibility: visible;
            opacity: 1;
        }
        #{$wrap} #{$menu} > li.mega-menu-item:hover > a.mega-menu-link:after,
        #{$wrap} #{$menu} > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:after {
            width: 100%;
        }
    }

    What would I need to add for this addition (hopefully without an svg)?

    Plugin Author megamenu

    (@megamenu)

    Hi maxcburk,

    I am sorry, but that is a level of customisation that isn’t covered under support (free or pro). It is not a simple modification to existing CSS, so you would need to ask a freelancer to help you with it.

    Regards,
    Tom

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Stipe-Like Mega Menu Dropdown’ is closed to new replies.