steps:
1. Get your image and upload it to an image hosting website
2. Open themes/default (or whatever theme your using)/style.css
3. Find:
replace with:
4. Replace the @ with the url of the image.
5. Save the file and you've got a background image.
1. Get your image and upload it to an image hosting website
2. Open themes/default (or whatever theme your using)/style.css
3. Find:
Code:
/* The main body of the entire forum. */
body
{
background-color: #1e1e22;
padding: 12px 30px 4px 30px;
width: 90%;
margin: 0px auto;
}
replace with:
Code:
/* The main body of the entire forum. */
body
{
background-color: #1e1e22;
background:url("@");
padding: 12px 30px 4px 30px;
width: 90%;
margin: 0px auto;
}
4. Replace the @ with the url of the image.
5. Save the file and you've got a background image.







