MyBB Community Forums

Full Version: How to change mybb default theme background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello, i want change default theme background.

i tried many way in globle.css
container, body, image url but didn't change anything 

please help me out 

forum link - careu.in
Based on your website, modify the #content and #logo for changing backgroun or use the below code

#content {
    background: url("YOUR_IMAGE") !important;
}
#logo {
    background-color: #ccc !important;
    background-image: url("YOUR_IMAGE") !important;
}

Here YOUR_IMAGE is a link to your image, you can use whatever you want.
The above is example and ofcourse you can modify existing classes.
(2020-04-27, 03:39 AM)WallBB Wrote: [ -> ]Based on your website, modify the #content and #logo for changing backgroun or use the below code

#content {
    background: url("YOUR_IMAGE") !important;
}
#logo {
    background-color: #ccc !important;
    background-image: url("YOUR_IMAGE") !important;
}

Here YOUR_IMAGE is a link to your image, you can use whatever you want.
The above is example and ofcourse you can modify existing classes.
yes it's work thank you