How to add background image in the responses

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
User avatar
Galandas
BBCoder III
BBCoder III
Posts: 129
Joined: 07 Mar 2010, 00:08
BBCodes: 35
Favourite BBCode: player yahoo
Favourite MOD: Mod Rey
Location: italy
Contact:

Re: How to add background image in the responses

Post by Galandas »

very simple and that's what I put in colours.css


Code: Select all

.bg1, .bg2, .bg3 { 
	background-color: #7b5a47;
	background-image: url("{T_THEME_PATH}/images/bg_row.gif");
	background-repeat: repeat;
}


then we must also change .online
because the image is repeated along

Code: Select all

.online {
	background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");
}
Locked