Hi there,
I created a button in my main menu and would like it to always be visible, however, when the menu collapses the button is, of course, no longer visible. I do not want to create a secondary menu because this shows above the actual main menu and do not like the extra space which is then created.
My question is, how can I exclude my button from the toggle menu?
Thank you!
Hey evivecare,
I think the easiest option would be to add a widget to the header and hide it for all screen sizes except mobile: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
You can hide it using this CSS:
@media only screen and (min-width: 768px) {
#header .widget {
display:none;
}
}
Best regards,
Rikard