Forum Hosting  

Go Back   Forum Hosting > phpBB3 Support > phpBB3 Skinning Forum

phpBB3 Skinning Forum Need help customizing the looks of your phpBB3 forum? Post here.




People in fChat: Follow Forumer on Twitter | Facebook | Myspace
Reply
 
LinkBack Thread Tools Display Modes
Old 09-03-2009, 05:35 PM   #1 (permalink)
Member
 
TKOwnedU5's Avatar
 
Join Date: Aug 2009

Posts: 6
Rep Power: 0 TKOwnedU5 is infamous around these parts
fTrader: (0)
fBuck$: 371
Bank: 0
Total fBuck$: 371

My Forumer
My Country:
Default Custom Background Image

Hey,

I want to have my own custom background image..but still have the same template I just want to change the background from white to a image I have saved on my computer is there a way to do this. Thanks-

-Tony
TKOwnedU5 is offline   Reply With Quote
Old 09-04-2009, 11:36 AM   #2 (permalink)
Member
 
gameking19's Avatar
 
Join Date: Jul 2009

Posts: 18
Rep Power: 0 gameking19 is infamous around these parts
fTrader: (0)
fBuck$: 2,776
Bank: 1,328
Total fBuck$: 4,104

My Forumer
My Country:
Default Re: Custom Background Image

i would really want to know that to
gameking19 is offline   Reply With Quote
Old 09-04-2009, 06:07 PM   #3 (permalink)
Member
 
TKOwnedU5's Avatar
 
Join Date: Aug 2009

Posts: 6
Rep Power: 0 TKOwnedU5 is infamous around these parts
fTrader: (0)
fBuck$: 371
Bank: 0
Total fBuck$: 371

My Forumer
My Country:
Default Re: Custom Background Image

So can we get any help here?? Thanks
TKOwnedU5 is offline   Reply With Quote
Old 09-05-2009, 03:11 AM   #4 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

Quote:
Originally Posted by TKOwnedU5 View Post
So can we get any help here??
A little patience would be appreciated, I do this in my spare time and for free, some more serious issues have to take priority sometimes!

----------------------

you will need to host the image on an image host and link it in to your forum, using the direct link to the image.

ACP -> Styles -> Themes -> Edit -> find the code which starts with "Body" ...different styles got it slightly different but all start with "body" and should look something like this (it is from Prosilver):

Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
}
and add this code to the bottom
Code:
background-image: url("http://direct link to your image"); 
just before the bracket like this:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
        background-image: url("http://direct link to your image");
}
Make sure you save the style sheet to your computer before you edit it in case you mess up something, so you can restore it.

If you tell me which style you want to edit I can help you with the code...

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Old 09-05-2009, 06:16 AM   #5 (permalink)
Junior Forumer
 
KasToRiArA's Avatar
 
Join Date: Aug 2009

Location: KasToRiA
Posts: 70
Rep Power: 1 KasToRiArA is on a distinguished road
fTrader: (2)
fBuck$: 420
Bank: 5,579
Total fBuck$: 5,999

My Forumer
My Country:
Send a message via MSN to KasToRiArA
Default Re: Custom Background Image

Quote:
Originally Posted by Wild Cat View Post
A little patience would be appreciated, I do this in my spare time and for free, some more serious issues have to take priority sometimes!

----------------------

you will need to host the image on an image host and link it in to your forum, using the direct link to the image.

ACP -> Styles -> Themes -> Edit -> find the code which starts with "Body" ...different styles got it slightly different but all start with "body" and should look something like this (it is from Prosilver):

Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
}
and add this code to the bottom
Code:
background-image: url("http://direct link to your image"); 
just before the bracket like this:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
        background-image: url("http://direct link to your image");
}
Make sure you save the style sheet to your computer before you edit it in case you mess up something, so you can restore it.

If you tell me which style you want to edit I can help you with the code...
There is a problem with that.. You need a very big picture otherwise it seems awfull..
Edit: here is my url http://tims.50.forumer.com/index.php check how the picture is being seen

Last edited by KasToRiArA; 09-05-2009 at 06:39 AM..
KasToRiArA is offline   Reply With Quote
Old 09-05-2009, 11:38 AM   #6 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

Code:
background-image: url("http://direct url of your image"); 
background-attachment: fixed;
background-repeat: repeat; 
The colored parts explained:

Add the background image-> Write there the Direct URL of your image

If you want to add a big image and you want it to be fixed and the forum moving on top of it you can add this....... if you want your background to move together with your forum (when scrolling) then you can leave it out...

If the image is small and you want to fill the whole background with it (tile it) you can set it to "repeat" ......... if you have a large image which you only want to display once then set it to "no-repeat" (background-repeat: no-repeat)

Last edited by Wild Cat; 09-05-2009 at 11:43 AM..

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Old 09-05-2009, 09:27 PM   #7 (permalink)
Active Forumer
 
cityrailsaints's Avatar
 
Join Date: Jul 2009

Location: Sydney Australia
Posts: 412
Rep Power: 0 cityrailsaints is an unknown quantity at this point
fTrader: (0)
fBuck$: 5,288
Bank: 0
Total fBuck$: 5,288
Happy Birthday! - Larah No Message - cityrailsaints Watch Some Television!  Enjoy :) - no2pencil 

My Forumer
My Country:
Question Re: Custom Background Image

Quote:
Originally Posted by Wild Cat View Post
A little patience would be appreciated, I do this in my spare time and for free, some more serious issues have to take priority sometimes!

----------------------

you will need to host the image on an image host and link it in to your forum, using the direct link to the image.

ACP -> Styles -> Themes -> Edit -> find the code which starts with "Body" ...different styles got it slightly different but all start with "body" and should look something like this (it is from Prosilver):

Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
}
and add this code to the bottom
Code:
background-image: url("http://direct link to your image"); 
just before the bracket like this:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
        background-image: url("http://direct link to your image");
}
Make sure you save the style sheet to your computer before you edit it in case you mess up something, so you can restore it.

If you tell me which style you want to edit I can help you with the code...
Where do you post this code
cityrailsaints is offline   Reply With Quote
Old 09-05-2009, 10:23 PM   #8 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

As I've said above:

ACP -> Styles -> Themes -> Edit

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Old 09-05-2009, 10:46 PM   #9 (permalink)
Active Forumer
 
cityrailsaints's Avatar
 
Join Date: Jul 2009

Location: Sydney Australia
Posts: 412
Rep Power: 0 cityrailsaints is an unknown quantity at this point
fTrader: (0)
fBuck$: 5,288
Bank: 0
Total fBuck$: 5,288
Happy Birthday! - Larah No Message - cityrailsaints Watch Some Television!  Enjoy :) - no2pencil 

My Forumer
My Country:
Default Re: Custom Background Image

Oh, I just relised ACP=Administrater Control Panel Thanks
cityrailsaints is offline   Reply With Quote
Old 09-06-2009, 07:28 AM   #10 (permalink)
Junior Forumer
 
KasToRiArA's Avatar
 
Join Date: Aug 2009

Location: KasToRiA
Posts: 70
Rep Power: 1 KasToRiArA is on a distinguished road
fTrader: (2)
fBuck$: 420
Bank: 5,579
Total fBuck$: 5,999

My Forumer
My Country:
Send a message via MSN to KasToRiArA
Default Re: Custom Background Image

Quote:
Originally Posted by Wild Cat View Post
Code:
background-image: url("http://direct url of your image"); 
background-attachment: fixed;
background-repeat: repeat; 
The colored parts explained:

Add the background image-> Write there the Direct URL of your image

If you want to add a big image and you want it to be fixed and the forum moving on top of it you can add this....... if you want your background to move together with your forum (when scrolling) then you can leave it out...

If the image is small and you want to fill the whole background with it (tile it) you can set it to "repeat" ......... if you have a large image which you only want to display once then set it to "no-repeat" (background-repeat: no-repeat)
look i want to edit dark shines theme with this picture

direct link: http://img36.imageshack.us/img36/199...t77c2c0wy3.jpg
but it doesnt work :S
i tried what u told me but.., no use :S

Last edited by KasToRiArA; 09-06-2009 at 07:57 AM..
KasToRiArA is offline   Reply With Quote
Old 09-06-2009, 12:00 PM   #11 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

The Dark shine theme has some additional code, that's why it did not work... I did it on my test board here's how it looks like.

You need to find this code:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
}
and replace it with this:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
        background-image: url("http://img36.imageshack.us/img36/1994/warcraft77c2c0wy3.jpg"); 
        background-attachment: fixed;
        background-repeat: repeat; 
}
then scroll down in the CSS and find this code:
Code:
--------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */

html, body {
	color: #9a9a9a;
	background-color: #000000;
}
and remove this bit:
Code:
body {
	color: #9a9a9a;
	background-color: #000000;
}

Last edited by Wild Cat; 09-06-2009 at 12:25 PM..

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Old 09-06-2009, 12:14 PM   #12 (permalink)
Junior Forumer
 
KasToRiArA's Avatar
 
Join Date: Aug 2009

Location: KasToRiA
Posts: 70
Rep Power: 1 KasToRiArA is on a distinguished road
fTrader: (2)
fBuck$: 420
Bank: 5,579
Total fBuck$: 5,999

My Forumer
My Country:
Send a message via MSN to KasToRiArA
Default Re: Custom Background Image

nothing that didnt work..I made you a test account if you could help me out :S
The picture is being seen twice how can i make it be 1 and big enought to cover all the space?

Last edited by Wild Cat; 09-07-2009 at 09:49 PM.. Reason: removed the long quote
KasToRiArA is offline   Reply With Quote
Old 09-06-2009, 12:24 PM   #13 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

You don't need to quote my post all the time if there are no posts in between..... it just makes the thread real long..

It is seen twice because it is set to repeat, the image is too small to cover the whole screen

You can not make it flexible, so if you want it to be 1 image and cover the whole screen, you need to resize it first to make it bigger.

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Old 09-07-2009, 12:13 AM   #14 (permalink)
Member
 
weeksybro's Avatar
 
Join Date: Jul 2009

Posts: 10
Rep Power: 0 weeksybro is infamous around these parts
fTrader: (0)
fBuck$: 961
Bank: 0
Total fBuck$: 961

My Forumer
My Country:
Default Re: Custom Background Image

i am needing the same help.. but as i have done this it comes up were the picture should be as a small square with a red ccross

i would like to do this with

dark fantashy

or summer fun..

can you do the code up for me with this picture!

http://i580.photobucket.com/albums/s...80483423-1.jpg

thanks hope you can help!
weeksybro is offline   Reply With Quote
Old 09-07-2009, 10:17 PM   #15 (permalink)
Elite Forumer
 
Wild Cat's Avatar
 
Join Date: May 2007

Location: UK
Posts: 12,957
Rep Power: 17 Wild Cat is a jewel in the roughWild Cat is a jewel in the roughWild Cat is a jewel in the rough
fTrader: (4)
fBuck$: 15,135
Bank: 321,929
Total fBuck$: 337,064
You do a good job as admin the forums! - no2pencil You do a great job. Forget about what jerks say. fHQ lives because of you. - BlueBlaze For all your help - Nutz I loves me a good cat sincerly yours Daxflo. - DAXLO You do a great job here! - Larah 
No Message - Limez Enjoy a cup of Joe! - no2pencil Cake goes well with Coffee (or so I'm told!) - no2pencil To go with your cake.  =) - Larah Don't be sore at me :) - no2pencil 
Driving You nuts, here is some more junk food - cityrailsaints More Junk food! - cityrailsaints 

My Forumer
My Country:
Default Re: Custom Background Image

This is what the dark shine looks like with your image:

You need to find this code:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
}
and replace it with this:
Code:
body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	background-color: #FFFFFF;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	margin: 0;
	padding: 12px 0;
        background-image: url("http://i580.photobucket.com/albums/ss245/weeksybro/Decorated%20images/1227880483423-1.jpg"); 
        background-attachment: fixed;
        background-repeat: repeat; 
}
then scroll down in the CSS and find this code:
Code:
--------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */

html, body {
	color: #9a9a9a;
	background-color: #000000;
}
and remove this bit:
Code:
body {
	color: #9a9a9a;
	background-color: #000000;
}
========================================================

Summer fun: it needs too much editing and is quite complex, and did not look good at all with that image...

[Reserved][IHWC forums][Free Computer Wallpapers][Tweaked for your Pleasure]
[Computer Help][Website Design Tutorials][BWS Forum][TechMonkeys.co.uk]


USEFUL TIP: If your support request gets resolved, click on THREAD TOOLS > MARK THIS THREAD AS SOLVED. This will mark the thread RESOLVED and will close the thread. (please use this tip!)
Please DO NOT! PM/e-mail me for support unless I ask you to.
Do a search and if you don't find your answer create a thread with your question and I will be happy to help. I can not be replying the same answer over and over in an e-mail/PM. Thanks.
Wild Cat is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Background Image? Syka phpBB2 General Questions 1 03-07-2007 06:07 PM
need help with background image wywy IPB General Support 2 02-19-2007 06:08 PM
Want to add an image as background! tenshi IPB Skinning Help 0 07-11-2005 01:34 PM
How Do I Put A Custom BackGround Image On My Site? Junnon phpBB2 skinning Help 5 02-19-2005 04:53 PM
I Need Some Help On Place A BackGround Image And A Custom Header/Title On My Page. Junnon phpBB2 skinning Help 7 02-18-2005 06:02 PM