Page 1 of 1

custom textbox background color

Posted: Thu Oct 05, 2006 6:36 am
by Me59
Script URL:
Version of script: 1.43
...
Write your message below:

sign form field background colors - can I customise the text box background colors? where? I want them #C0FFC0

Posted: Thu Oct 05, 2006 4:33 pm
by Henrie
Hello Me59,

In the gbook folder find style.css
Open it and find

Code: Select all

INPUT {
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#000000;
	background-color:#FFFFFF;
}
and replace it with

Code: Select all

INPUT {
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#000000;
	background-color:#C0FFC0;
}

textarea {
   background-color:#C0FFC0;
   }
Greetings,
Henrie

Posted: Thu Oct 05, 2006 8:50 pm
by Me59
yep, fits perfectly! Thanks Henrie!