Adding bg image in phpBB

Zaborg

Web Designer
Joined
Jul 3, 2010
Messages
2,713
Reaction score
2
FP$
5,146
Hello again

How to add a custom bg on phpBB? Like in FP.

We are building up a new theme and we are stuck in here 🙂

Thanks
 
it's actually a rotating image usually either a square pattern or a single pixel column image that is repeated to fill the background in fixed width themes.
 
If you mean adding an image to tile downwards like here on FP, then here is what you do.

Go to your css, then find

Code:
html, body {

And add this under background-color.
Code:
	background-image: url("{T_THEME_PATH}/images/imagename");
	background-repeat: repeat-y;
	background-position: center top;

If you want something else then let me know.
 
Back
Top Bottom