MyBB Community Forums

Full Version: Help With Theme Width Please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In version 1.6 I was always able to set the background width to 75% so more of the background would show.
In version 1.8 it doesn't seem to want to work the same way

[Image: th_Width_zpsef3b4778.png]
The areas circled in red are the problem. The search box is overlapping and the text in the last post column is cut off. Can anyone please give me an idea of a fix. When everything is set to 90% it's all bueno but some want to be able to have the forum a little narrower.
Url forum?
(2014-09-11, 10:33 PM)adi19 Wrote: [ -> ]Url forum?

I can give you the url but I don't have the theme available for viewing by anyone but admins until I find a solution. Screenshot isn't enough?
We'll have to take a look at the css...
Will this help?
The following is the portion of the CSS for the theme I am working on. As far as I can see there are only two areas where you adjust the themes width. Am I wrong?
body {
background: #ffffff url(http://i1165.photobucket.com/albums/q583...3b8fd0.png);
color: #333;
text-align: center;
line-height: 1.4;
margin: 0;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
font-size: 14px;
font-weight: bold;
overflow-y: scroll;
}

a:link {
color:#4e2a16;
text-decoration: none;
}

a:visited {
color: #4e2a16;
text-decoration: none;
}

a:hover,
a:active {
color: #9d6d2f;
text-decoration: underline;
}

#container {
background: url(http://i1165.photobucket.com/albums/q583...c1630b.png) repeat center top;
background-position: top center;
background-attachment: fixed;
border: 15px double #bb7755;
margin: auto auto;
margin-top: 50px;
margin-bottom: 50px;
border: 15px double #bb7755;
text-align:center;

width:75%;
}

.wrapper {

width: 75%;
min-width: 970px;
max-width: 1500px;
margin: auto auto;
}

Sorted, thank you.