Page 1 of 1
Background Color
Posted: Sun Apr 11, 2010 11:52 pm
by evenstephencom
Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
If I insert the code: < body bgcolor="66cc body> will I indeed get a brown background on my page?
Thanks!
Re: Background Color
Posted: Mon Apr 12, 2010 5:32 am
by Henrie
Hello eventsephencom,
evenstephencom wrote:If I insert the code: < body bgcolor="66cc body> will I indeed get a brown background on my page?
No it will not, because what you wrote is not valid html code.
The correct code would be
Code: Select all
<body style="background-color:#C27E3A">
But in GBook all styles are defined in an external css stylesheet, you can find it in
styles/default/style.css
You would have to change:
Code: Select all
body{margin:0; padding:0; background-image:url(images/bg.png); background-repeat:repeat-x; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; color:#003399;}
to
Code: Select all
body{margin:0; padding:0; background-color:#C27E3A ; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; color:#003399;}
Learn more about html coding here:
http://www.w3schools.com/html/html_styles.asp
And see about colors: here:
http://www.w3schools.com/html/html_colors.asp or here
http://www.immigration-usa.com/html_colors.html
Greetings,
Henrie
Background Color
Posted: Tue Apr 13, 2010 12:06 pm
by evenstephencom
Thanks to both of you for your help! I'll try to insert that code this weekend into my GB.
Ken
