View Full Version : Quick Question about Forms...


Jump5crazy
06-28-2004, 09:30 PM
How would I go about modifying my form, like changing the color of the text fields and stuff?

sisqoluv
06-28-2004, 09:34 PM
In your css code:

input, textarea
{ background: #ffffff;
font-family: TAHOMA;
color: #000000;
border-style: dotted;
border-color: #C30825;
border-width: 1px; }

Just change it to whatever you want. Lissa also has information on css at her site if you need more info.

Jump5crazy
06-28-2004, 09:38 PM
Thank you!!