Quote:
Originally Posted by fluidswork
Great article this will help everyone ..............
--------------- Added [DATE]1294324135[/DATE] at [TIME]1294324135[/TIME] ---------------
can anyone tell me how to change the background of the forum .... ??
|
AdminCP > Styles & Templates > Style Manager > *Select "StyleVars" from the drop-down to the right of your style.
Now look for
Common and under that category header you'll see a list of commons stylevars many parts of your site use, scroll down that list and look for "doc_background" and click it, now change the background color OR add in an image as well!
OR
You can also overwrite this entirely by pasting your own body css definitions in the additional.css template if you wish, example:
Code:
body {
background-image: url(images/myimage.png);
background-repeat: repeat-y;
background-position: top;
}
So in essence you have two ways, the way vBulletin "expects" you to change/update it using stylevars OR by being sneaky with CSS

and fyi that was simply example css there are a few different ways you can make it achieve what you want in terms of css

.