Richie
Veteran
^ Yes, That's me V_V
Posts: 624
|
Post by Richie on Dec 5, 2007 1:20:25 GMT
You can add a background image in your admin panel through the skin settings. You can also fix the image so it doesn't scroll with the page. To center your background image or keep it from tiling, you will need to use a code in your Global Header:
<style type="text/css"> <!--
body { background-repeat: no-repeat; background-position: center center; }
--> </style>
repeat is the default value. no-repeat should be used when you have a large image that shouldn't tile, like wallpaper for example. repeat-y should be used when you have an image that repeats vertically down the center of the forum to create the effect of "bars", like SoCal's does.
The first value is the vertical positioning. It can be top, center or bottom. The second value is the horizontal position. It can be left, center or right. It's usually fine to leave this at "center center". If you used repeat-y for the background-repeat, you can use "top center".
|
|