MyBB Community Forums

Full Version: Editing the style sheet
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, I'm fairly new to MyBB (I've used ProPhpBB and Forumsland) and the style sheet makes my brain want to explode. How on earth does it work, and mainly, how can I upload the images for forum icons, the logo, etc.?
Style sheets take some getting used to:

This will change the default color of (most of) your links:

a:link {
color: #026CB1;
text-decoration: none;
}

To change the background color on the outside edges = background:

body {
background: #000022;
color: #000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
text-align: center; /* IE 5 fix */
line-height: 1.4;
}

It's something you might eventually want to learn no matter what type of software you use.
Images you upload with FTP, into the image folder.
Have fun Smile
Images are rarely used in stylesheets, the only place I can think of right now that uses images in the CSS is the thread ratings. As seeker said, upload images to the ./images/ folder in your file manager, and you link to images in templates or theme settings.