Blue border rule and blue bar codes in CSS

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
Gregg
Posts: 3
Joined: Wed Jan 10, 2007 12:11 am

Blue border rule and blue bar codes in CSS

Post 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
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post 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
Post Reply