How can I hide footer widgets on mobile only?
Hey anogma!
Add this to your custom CSS.
@media only screen and (max-width: 767px) {
#footer { display: none !important; }
}
Cheers!
Elliott
This didn’t work. Footer widgets stil present on screen smaller than 767px. Any other solution?