PDA

View Full Version : Remove sidebar


Fizzgig
09-14-2015, 06:26 PM
Hi... is there a way of removing the sidebar for smaller screens devices....thanks

billstelling
09-15-2015, 11:10 AM
Turn it off.. /jk

You could install sidebar anywhere or the other so you can toggle to collapse by default. That or write a conditional for your themes that tell them not to display the sidebar under a certain width.

Fizzgig
09-15-2015, 01:00 PM
Turn it off.. /jk

That or write a conditional for your themes that tell them not to display the sidebar under a certain width.


that would be good.... how do you do it..:D

billstelling
09-15-2015, 01:18 PM
If I have time later I will see If I can figure something out. There might be something already done for that as I think I remember a post about it a while back, I just can't remember..

napy8gen
09-15-2015, 08:44 PM
Paste this in your style manager> style name> CSS templates> additional.css
@media (max-width:768px){
#content_container { margin-right:0px;}
#sidebar_container{display:none}
}

Not tested but it should work.
p/s: If there is any element such as html divs or graphic or banner that has longer fixed width defined it may hold the page from responsive.