For those who have high screen resolutions (over 1024 x 768), this little tweak will make the forum width become 70% of the screen instead of fixed 850px as default. With lower screen resolution, the width stays as 850px. It helps the forums look much better in big screens.
In
./bb_default_style.css:
Look for:
.tbTransparent, .tbTransparentmb{
font-family:Arial,'lucida grande',tahoma,verdana,sans-serif;
width:850px;
background:transparent;
font-size:9pt;
text-align:center;
margin-left:auto;
margin-right:auto;
vertical-align:top;
}
Add under:
@media screen and (min-width:1024px){
table.forums, table.forumsmb, .tbTransparent, .tbTransparentmb{
width:70%;
}
}
Not sure if it benefits everyone, but it definitely does for me. :)