MyBB Community Forums

Full Version: Where are themes located?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I used a theme manager to create a new theme, however I find that it doesn't allow me the flexibility I want. So I would like to edit the theme file directly, where is the newly created theme file located because I cannot find it. ;P

What I'm trying to do here http://www.halflifeworld.info/forums is make the forums resemble my main website http://www.halflifeworld.info and I need to add a 4 pixel border around the whole forum table.

Quote: border: #FFFFFF; border-style: solid;
border-top-width: 4px;
border-right-width: 4px;
border-bottom-width: 4px;
border-left-width: 4px

Thanks guys, love this forum so far.
Nevermind I think I understand how this works, you need to edit templates for things like that. Now how would I accomplish what I want to do. Adding a 4px border around the whole forum area to match my site?
Yes, in RC4 you need to edit the css template. However in the next version this is all controlled by the theme system.

Ther should be a part which looks like "#container {" in the CSS template, below that, add:
border: 4px solid #fff;

Making sure there are no other border related items in that selector..
Thanks for that reply, it works but I'm having a problem. The border overlays the bottom text "Generated in 0.1287601 seconds (47.01% PHP / 52.99% MySQL)
MySQL Queries: 18 / Parsing 0.0005970 / Global Parsing Time: 0.0461111
PHP version: 4.3.9 / Server Load: 0.04 / GZip Compression: Enabled
[advanced details]" and doesn't correctly cover the forum.
In the #copyright part, you should be able to add a margin-top: 5px; to bump it down.
Alright Thanks.