View Full Version : form/style sheet problems


Jump5crazy
02-20-2005, 09:12 PM
Okay, I recently changed my style sheet for my forms. But now, there are no borders around the text boxes and the input buttons, but there is on the text area. This is what is in my style sheet:

input, textarea
{ background: #FFFFFF;
font-family: arial;
color: #000000;
border-style: solid;
border-color: #000000;
border-width: 1px;}

and here is a link to one of the pages this is happening on. (http://trevor.violettespage.com/site/contact.html)

MaGiCSuN
02-20-2005, 09:22 PM
input, textarea
{ background: #FFFFFF;
font-family: arial;
color: #000000;
border-style: solid;
border-color: #000000;
border-width: 2px;}

input, radio
{ border-width: "0" }

you are using 2px and 0 for both "input"
maybe that's affecting it ?

Love,
Mirna

Chris
02-20-2005, 09:22 PM
I see borders around everything. Mozilla firefox 1, Windows XP Home.

Jump5crazy
02-21-2005, 12:33 AM
input, textarea
{ background: #FFFFFF;
font-family: arial;
color: #000000;
border-style: solid;
border-color: #000000;
border-width: 2px;}

input, radio
{ border-width: "0" }

you are using 2px and 0 for both "input"
maybe that's affecting it ?

Love,
Mirna
Apparently it was. haha, thanks.