Re: Dark blue, white and yellow style [message #36056 is a reply to message #35962] |
Thu, 01 March 2007 13:36 |
magli
Messages: 15 Registered: February 2007 Location: Meran, Italy
Karma:
|
Junior Member |
|
|
littleking,
This is easy to do:
1. Log on as admin
2. Go to Admin Control Panel
3. Under "Template Management" click "Template Editor"
4. Select the template set you want to change --> probably default.
-click Edit.
5. Scroll down and click "Forum.css.tmpl"->> FORUM CSS
6. It will open the forum style sheet for you to edit. The first section, and the one you want to change should look something like this:
body {
background: #E5E5E5;
color: #000000;
margin: 2px;
font-family: Tahoma, Verdana, "Myriad Web", Syntax, sans-serif;
font-size: 10pt;
}
Now, depending on how you want to limit the width, you have to change this section in different ways. If you want to have the forum only take up 80% of the width, and be centered, (like the forum shown here.), then you want to change the above section to this:
body {
background: #E5E5E5;
color: #000000;
margin: 2px;
font-family: Tahoma, Verdana, "Myriad Web", Syntax, sans-serif;
font-size: 10pt;
width:80%;
margin-left:10%;
}
Now you have to click "save". Go back to your forum, the changes should have taken effect.
|
|
|