
Originally Posted by
CSSIssue
How do I get rid of the dashes on the submit image?
You could change
Code:
input {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px dashed #333333;
color: #000000;
font-weight: bold;
}
to
Code:
input[type="text"] {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px dashed #333333;
color: #000000;
font-weight: bold;
}
so that it won't apply to the type="submit" input.
For older browsers, you could instead put a special class on the text inputs and add the dotted lines that way instead.
There are at least 4 different browsers by that name. You have to be more specific.
Bookmarks