![]() |
| |||||||
| phpBB3 Skinning Forum Need help customizing the looks of your phpBB3 forum? Post here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Member | 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 |
| | |
| | #4 (permalink) |
| Elite Forumer ![]() ![]() | 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;
}
Code: background-image: url("http://direct link to your image"); 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");
}
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. | |
| | |
| | #5 (permalink) | |
| Junior Forumer ![]() | Quote:
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.. | |
| | |
| | #6 (permalink) |
| Elite Forumer ![]() ![]() | Code: background-image: url("http://direct url of your image");
background-attachment: fixed;
background-repeat: repeat; 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. | |
| | |
| | #7 (permalink) | |
| Active Forumer ![]() | Quote:
| |
| | |
| | #8 (permalink) |
| Elite Forumer ![]() ![]() | 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. | |
| | |
| | #10 (permalink) | |
| Junior Forumer ![]() | Quote:
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.. | |
| | |
| | #11 (permalink) |
| Elite Forumer ![]() ![]() | 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;
}
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;
}
Code: --------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */
html, body {
color: #9a9a9a;
background-color: #000000;
}
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. | |
| | |
| | #12 (permalink) |
| Junior Forumer ![]() | 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 |
| | |
| | #13 (permalink) |
| Elite Forumer ![]() ![]() | 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. | |
| | |
| | #14 (permalink) |
| Member | 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! |
| | |
| | #15 (permalink) |
| Elite Forumer ![]() ![]() | 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;
}
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;
}
Code: --------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */
html, body {
color: #9a9a9a;
background-color: #000000;
}
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. | |
| | |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
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 |