Blank Background

Chadook

Seasoned Veteran
Joined
Jan 30, 2011
Messages
4,331
Reaction score
10
FP$
909
I have tried to change my theme background, but it is still blank, how to solve it?
 
Do you want it to be changed to a color, or an image?

For both, you need to go in and find "#main-block" in your CSS files. If you want to change the color, change the value of "background-color:" to the RGB code of the color you want. For example, right now your "#main-block" looks like this:

#main-block {
width: 100%;
background-color: white;
}

To change the color, simply replace "white" with the RGB value. Let's say an off red...

#main-block {
width: 100%;
background-color: rgb(229, 58, 58);
}



To make your background an image, you'll have to change the whole background line. Make it look like this:

#main-block {
width: 100%;
background-image: url("URL HERE");
}


Hope that helps!
 
Can you link to your site, or the theme you are using? Also would you mind specifying the background you are trying to change?
 
Twisted Fairytale said:
#main-block {
width: 100%;
background-color: rgb(229, 58, 58);
}
I'll see it
Twisted Fairytale said:
Do you want it to be changed to a color, or an image?
Image
Darthmaul said:
Can you link to your site, or the theme you are using? Also would you mind specifying the background you are trying to change?
i'll Pm you
Neon
I want to change the blank background to an image.
 
Alright, to change it to an image, you need to find your "#main-block" in your CSS and replace it with:

#main-block {
width: 100%;
background-image: url("URL HERE");
}

Make sure the image is accessible and you keep the quotations and parentheses in the URL.
 
Thanks, a lot, and i hope you get more of learning :great: +1 rep
 
Back
Top Bottom