Tagged: widget area
Hi, How to hide widget area on mobile?
I’ve already made sure to uncheck “show sidebar on smartphones” in the sidebar settings, but it’s not working?
Hi yarac,
Turn on the custom CSS field for all elements by following this: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Then assign a class called hide-on-mobile to the item. Then add the following to Quick CSS:
@media only screen and (max-width: 767px) {
.hide-on-mobile {
display:none !important;
}
}
Best regards,
Rikard
It works! Thanks Rikard!