MyBB Community Forums

Full Version: Try to make a theme responsive
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I am trying to hide sidebar from mobile screen
I use this
	
@media only screen and (max-width: 767px){
     .sidebars {
        display: none;
    }


}

but that doesnt work

This is my sidebar html
<div class="sidebars">
last threads
etc
</div>