Page 1 of 1

Blue border rule and blue bar codes in CSS

Posted: Wed Jan 10, 2007 4:02 pm
by Gregg
Script URL:
Version of script: latest
Hosting company: netfirms
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution: CSS colors, color bars, changing colors

Write your message below:

First, congrats for your wonderful products. Thank you. I'm in the process of implementing them into an international fan club site.
I have been attempting to change the color of the blue bar and blue border in Guestbook CSS, but I'm starting to fiddle with code in incorrect places and now risk really goofing things up. Where specifically in the CSS will I find the blue border color code and the blue bar color code? I've even used 'Color Picker' utility to identify the color code and hunt it down in the CSS with no luck.
Thanks

Posted: Wed Jan 10, 2007 5:20 pm
by Henrie
In style.css file change

in

Code: Select all

TD.upper {
	color : #FFFFFF;
	background : #23559C;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
change the background

and in

Code: Select all

table.entries {
	color : black;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	BORDER-RIGHT: #23559C 1px solid;
	BORDER-LEFT: #23559C 1px solid;
	BORDER-TOP: #23559C 1px solid;
	BORDER-BOTTOM: #23559C 1px solid;
}
change the border values

Greetings,
Henrie