MyBB Community Forums

Full Version: Where can i find the forum skins css file?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to do some full css editing but i cant find the forums skin css file, can anyone tell me where i can find it? thankyou.
The CSS are the themes in the ACP Smile.
Admin CP > Themes > Modify/Delete > *theme name edit*

to be exact. The entire page has css options, but down the bottom is where you can add aditional CSS.
I need to full css, so i dont want to do it in the admin cp, like i said i need the css file.
But you can integrate one.

Look at the source code of your forums and search in the head for something like
<link rel="stylesheet" type="text/css" href="css.php?theme=2" />
Open that link in your browser, for example http://www.domain.tld/mybb/css.php?theme=2. Then copy and paste the whole code into a new css file like mybb.css and upload the file to your mybb directory.

After that go to your Admin-CP -> Templates -> *your template set* -> Expand -> headerinclude -> Change original and search for
<link rel="stylesheet" type="text/css" href="css.php?theme=$theme[tid]" />
Replace it with
<link rel="stylesheet" type="text/css" href="mybb.css" />
Thanks micheal.