Adding background Image in phpbb?

Couldn't he just go into the css file. Stylesheet.css and look for the body{ tag should have something like this in it..

Code:
background: #181913;
    color: #fff;
etc etc ...

add this to the section just under color:
Code:
    background-image: url(url to your image file);
    background-repeat: no-repeat;
    background-attachment: fixed;

I would this this would work .. however, depending on size of the image, and what ya want it to do, you may have to fix the repeat and attachment areas.
 
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.
 
what kind of background image are you trying to put on?

A tiling one like here on FP, or a static image?
 
Just a background that always is in the back of a post, thread, index, everything. I will try to find an example.
 
Back
Top Bottom