MyBB Help

try looking in the CSS files in the styles folder if you are using a different style than the default, other than that I have no clue
 
AdminCP > Templates & Style > Themes > Select the theme you're using > Options > Edit Theme > global.css

Change the background form on that page and update, I assume.
 
Azareal said:
AdminCP > Templates & Style > Themes > Select the theme you're using > Options > Edit Theme > global.css

Change the background form on that page and update, I assume.

^This. And to be exact, at start of global.css, in body class, change the background code

From:
background: #efefef;

To:
background: #efefef url(background.png);
 
kavin said:
Azareal said:
AdminCP > Templates & Style > Themes > Select the theme you're using > Options > Edit Theme > global.css

Change the background form on that page and update, I assume.

^This. And to be exact, at start of global.css, in body class, change the background code

From:
background: #efefef;

To:
background: #efefef url(background.png);
Or you can just select body from the drop down and put "url(background.png)" into the background input box rather than, going into advanced mode.
 
Ok, Ive Managed This But How Do I Make The BG Fit The Window? Like, Not Be off Centered Etc?
 
In the extra CSS attributes box on that page, if you've followed my steps, you'd add:
Code:
background-position: center;

Or simply add that to the body class, if you're manually modifying the CSS itself in advanced mode or a physical text editor.
 
SpeakWhatsReal said:
Lewisoboy007 said:
Is There Anyway to make the Image Fixed? So It Doesnt Move?

Code:
background-attachment:fixed;

http://www.w3schools.com/cssref/pr_back ... sition.asp
Yeah, just add that to the same place as the last one I gave and it should do the trick.
Make sure to put it after the background property however, if you're editing the class directly in advanced mode or a physical text editor.
 
Back
Top Bottom