Reply To: slideout menu

Home Forums Support slideout menu Reply To: slideout menu

Home Forums Support slideout menu Reply To: slideout menu

#162826
Tom
Lead Developer
Lead Developer

Your best bet is to hide the current item:

.slideout-toggle {
    display: none;
}

Then add a custom link to your menu and give it the class of custom slideout-toggle.

In your custom link you can give it a navigation label of: <i class="fa fa-bars"></i> Menu

Then add this CSS:

.custom.slideout-toggle {
    display: block;
}

That should do it 🙂