MyBB Community Forums

Full Version: Top section of Forum not scaling properly
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

The top section of our Forum not scaling properly (see screenshot)

[Image: UPQNb.png]

Forum is here - http://www.linuxdistrocommunity.com/forums/index.php
MyBB version - 1.6.6

This happens when a person reduces the width of their browser to a size smaller than the actual template (as screenshot shows)

How do I correct this? Thank you.
i tried this using chrome and it scaled perfectly for me
Fixed:

Home » Themes » YourTheme » global.css » Edit Stylesheet: Advanced Mode

Look for ".wrapper {" (near top of file), remove the line "min-width: 970px;"

So change:
.wrapper {
	width: 85%;
	min-width: 970px;
	max-width: 1500px;
	margin: auto auto;
}

to

.wrapper {
	width: 85%;;
	max-width: 1500px;
	margin: auto auto;
}