MyBB Community Forums

Full Version: how to make theme fit on page ...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
my question is to any theme
how u make it fit to page even when u make the window bigger ??
You can use css media queries in order to resize elements based on screen size. Or you can size things based on percentage rather than by a fixed size.
Any fixed code to do it?
.container {
width: 98%;
margin: 0 auto;
}


That's pretty much all that's really needed to do it, but there are many ways to accomplish and improve it (Media queries mentioned above).
Thnx ill try it n let u know if that helped

its not helping Sad

tried but it does nothing