Style Modification

GOFORBROKE

Member
Where do I go to make something fluid or fixed for future reference? I'm new to Xenforo's engine compare to vBulletin that I been with since 2002. Dunno where to find it.

Edit: I found out how to fix the issue.
 
The page width is controlled by this property:

Admin CP -> Appearance -> Style Properties -> General -> Page Width Controller

Note the Fixed example in the Misc section on that page. Use code like this if you want a fixed width:

Code:
width: 750px;
margin: auto;
 
Top Bottom