background img

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

background img

Post by demon218 »

hi i just wanted to no how you add a custom background img to a forum

background img

Post by Stoker »

In prosilver style you will find this in the top of colours.css

Code: Select all

html, body {
	color: #536482;
	background-color: #FFFFFF;
}
To add a background image:

Code: Select all

html, body {
	color: #536482;
	background: #FFFFFF url("{T_THEME_PATH}/images/image.jpg") no-repeat 50% 50% fixed; 
}