Hi,
I know we can hide the sidebar on mobile devices which is great but I’d like to remove it for the iPad when in portrait mode. Is this possible? Is it possible to hide it at a certain max-width?
Thanks,
Hedley
Hey DigitalEssence!
Yes, please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
.sidebar { display: none !important; }
.content { width: 100% !important; border: none !important; }}
Cheers!
Yigit
Perfect thanks.
Going to stick this in my Gist for future use.