Tagged: footer, responsive
Another quick question:
How can I stop the footer displaying on mobile devices where the sidebar moves to below the content?
Thank you,
Becca
Hey Becca!
Thank you for using our theme.
In custom.css or Enfold -> General Styling -> Quick CSS field put the following:
@media only screen and (max-width: 767px) {
#socket {
display: none !important;
}
}
You can also replace 767 with 480.
Alternativ you can use the following to hide the footer section:
@media only screen and (max-width: 767px) {
#footer {
display: none !important;
}
}
Best regards,
Günter
better doing it with a function for more pagespeed?!
Hi,
Are you asking or making suggestion for a better way to do this?
Best regards,
Jordan Shannon