Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post I'm Lost... 
 
Hi,
sorry for this title but really i'm lost . I already send topic in another forum General Support and they told me to send in the apropriate forum,i hope it's the right one if not let me know, please.
My probleme is
I use black_pearl phpbb3 style
I'm trying to change the background body for my forum.
now it's black but i want to change it for another color , i don't want to change for all the forums  just for out square like this screenshoot  http://img127.imageshack.us/img127/1201/screenshot4bx8.png

 i got this style from this adresse
http://demo.phpbb3styles.net/Black+Pearl?phpbb=3.0.0

and the only file i have
http://bladstory.my5gb.com/aide/stylesheet.css.txt
http://bladstory.my5gb.com/aide/FAP.css.txt
http://bladstory.my5gb.com/aide/stylesheet_old.css.txt

in stylesheet.css i change
Quote:
body {
    /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
    color: #CCCCCC;
    background-color: #111111;
    font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
    margin: 0px 10px 0px 10px;
}


By:
Quote:
body {
    /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
    color: #CCCCCC;
    background-color: #111111;
    background-image: url('./images/fond.gif') no-repeat;
    font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
    margin: 0px 10px 0px 10px;
}



i post de fond.gif in /images/ but noting change, I refresh but nothing

My knowledge :i'm a novice and if u tell me to change a line by another line in file.css or to file.html i can do it, but i can't make new code or programme and my english is  
Thanks
 




____________
NB:
I use black_pearl phpbb3 style
for your info i'm a novice and if u tell me to change a line by another line in file.css or to file.html i can do it, but i can't make new code or programme and my english is:(
 
Last edited by bladstory on Sun 06 Apr, 2008 22:03; edited 1 time in total 
bladstorySend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: I'm Lost... 
 
Sorry, your image is too small for me too see what you want to change.

The body element is the actual area "behind" the website. If your website is sized at 100% (which it is in icy), then you will see nothing in the body area. If you fix the width of the main site container table, you will see the body background. Example: http://www.oneworld.hostultra.com/easy/dump/demo/

here I have

Quote:
body {
    background: #FAFAFA;
    margin: 0px 0px 0px 0;
    padding: 0px 10px 0px;
}


FAFAFA gives it a slight grey - the intention is to make the website to stand out from the background, giving almost 3-D look.

rather than two background lines, you could just use:
Code: [Download] [Hide] [Select]
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
color: #CCCCCC;
background: #111111 url('./images/fond.gif') no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0px 10px 0px 10px;
}


To get an idea of fixing the site container table width, read my post here:
http://www.icyphoenix.com/viewtopic.php??t=3999&p=27102#p27102
 



 
moreteavicarSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: I'm Lost... 
 
HI,
I hope that screen shoot is beter http://img397.imageshack.us/img397/1641/screenshot2cr5.png  
maybe i'm wrong but whene i open my forum it's not 100% in my screen ,it look like 80% and it's great for me but one friend in his browser it's 100%
and really i dont no how to proced to change width to 80% for all people
thanks a lot for help
 




____________
NB:
I use black_pearl phpbb3 style
for your info i'm a novice and if u tell me to change a line by another line in file.css or to file.html i can do it, but i can't make new code or programme and my english is:(
 
bladstorySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: I'm Lost... 
 
Ah ok, all you need to do is open overall_header.tpl, and llok for the first table statement. I'm not sure for the theme you're using, but in mgthemes, this is:

Code: [Download] [Hide] [Select]
<table width="100%" border="0" align="center" cellspacing="0" cellpadding="0">
    <tr>
        <td class="leftshadow" width="9" valign="top"><img src="{FULL_SITE_PATH}{SPACER}" alt="" width="9" height="1" /></td>
        <td width="100%" valign="top">
<table id="forumtable" width="100%" cellspacing="0" cellpadding="0">


You would change the opening table with do 80%, and the td width before the seond table to 80%, so from the above it would become:

Quote:
Ah ok, all you need to do is open overall_header.tpl, and llok for the first table statement. I'm not sure for the theme you're using, but in mgthemes, this is:

<table width="80%" border="0" align="center" cellspacing="0" cellpadding="0">
    <tr>
        <td class="leftshadow" width="9" valign="top"><img src="{FULL_SITE_PATH}{SPACER}" alt="" width="9" height="1" /></td>
        <td width="80%" valign="top">
<table id="forumtable" width="100%" cellspacing="0" cellpadding="0">


You will probably also need to put <centre> tags in. You would put the first <centre> tag straight after <body> in overall_header.tpl, and the </centre> before the </body> tag in overall_footer.tpl.
 



 
moreteavicarSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: I'm Lost... 
 
i don't have overall_header.tpl but i have overall_header.html    and there is
Quote:
<table width="100%" align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="leftshadow" width="9" valign="top"><img src="{T_THEME_PATH}/images/spacer.gif" alt="" width="9" height="1" /></td>
<td class="np-body" width="100%" valign="top">



i make change to 80% and it's perfect ,now still i can't see nes background blad_degrade.png
thanks a lot
 
what i'm looking for http://img127.imageshack.us/img127/1201/screenshot4bx8.png
 




____________
NB:
I use black_pearl phpbb3 style
for your info i'm a novice and if u tell me to change a line by another line in file.css or to file.html i can do it, but i can't make new code or programme and my english is:(
 
bladstorySend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: I'm Lost... 
 
Ok, it looks like another image is in the background - what is this? maybe right click on it to view it / view properties, then get its name - then check through your css to see where it is defined. if you see it in css, then change it to your image... or else... if you don't find it in css, it might even be in the overall_header file. Sometimes people override css definitions in the pages themselves...
 



 
moreteavicarSend private message  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron