Hi guys,
I’ve got two text widgets in my clients Enfold menu which is displayed in a side bar, one with just text, the other with a button box that links to a video. On mobile both widgets are not visible as the menu is replaced bij a hamburger menu. Can I show the widgets on mobile as well, but outside the menu centred at the top of the main page?
Regards,
Jan
Hi Jan,
I think the easiest way to do that would be to add a Color Section element and only show it for mobile. Add a new Color Section then add a widget area with your widgets inside of it and give the section an ID, then you can hide it for all screens except mobile with CSS like this:
@media only screen and (min-width: 768px) {
#your-section-id {
display:none !important;
}
}
Best regards,
Rikard
Thanks Rikard, that works perfectly!