MyBB Community Forums

Full Version: Changing Logo Properties
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, I want to change properties of the logo, like for example, I want to make the logo a set width and even give it a background image. Where do I go for these changes?

I know how to change the logo only but not add an image to it and stuff.
Admin CP > templates > themes >

Edit global.css

.logo {
BACKGROUND: url(path-to image) no-repeat;
....more css stuff here....
}

no-repeat will give you one instance of the background image.
repeat-x will repeat it accross the page
repeat-y will repeat it down the page
repeat will fill the container (the DIV)

If you want to make the .logo container (the DIV) a certain size, add:
width: ###px;
height:###px;

If you want just a background color but no image use:
BACKGROUND: #FFFFFF for white or the hex for the color you want

Is this what you were looking for?