How do I do this... (forum stylesheet prob)

rat_boy_100

In Runtime
Messages
441
Hi, i want to make the background of my forum show a background image instead of a color code. Can somebody show me how i change this peice of code in the stylesheet file so i can use an image instead of the color?

body{
background: #FFFFFF;
color: #A91010;
font-family: Verdana, Tahoma, Arial, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
font-size: 11px;
line-height: 135%;
margin: 0;
padding: 0; /* required for Opera to have 0 margin */
text-align: center; /* centers board in MSIE */
}


Thanks for any help :p
 
you should use background-image: url(file/path/here.jpg) in the class you just made, or add it to the body like

body {
background-image: url(path/to/image.jpg);
}

hope that helps!
 
Back
Top Bottom