MyBB Community Forums

Full Version: Justin's Apart theme overflow help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Could you help me to setup min-width: and max-width: that will works with lower resolutions. Because right now if resolution is 800x600 the theme is missing 15% of the theme!

Original css
.wrapper {
	width: 85%;
	min-width: 970px;
	max-width: 1500px;
	margin: auto auto;

this way works great but doesn't maintain min width
.wrapper {
	width: 99%;
	margin: auto auto;
add this code: min-width: 970px;
Enough already.