Hi.
I have disabled the side bar when responsive, but the sidebar still appears on ipad mini. It works on smaller devices properly. I am assuming its a break point issue. Can you offer a solution. I would like the sidebar to disappear when the menu goes responsive.
Thx
Hi OneClickTech!
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; }
.main { width: 100% !important; border: none !important; }}
Regards,
Yigit
Thank you for your quick reply. That removes the stuff in the side bar but doesn’t go full width.
Hi!
Sorry, please change the code to following one
@media only screen and (max-width: 990px) {
.sidebar { display: none !important; }
.content { width: 100% !important; border: none !important; }}
Best regards,
Yigit
Thank you Yigit. Most appreciated.