Hello,
I am trying to set in styles.php that the submit button appears in orange (#FBA100) while the input text areas are left in white.
The following code sets the text area (as intended) in white and the submit button (should be orange) in white:
submit {
BORDER-RIGHT: #000000 1px solid;
BORDER-TOP: #000000 1px solid;
BORDER-BOTTOM: #000000 1px solid;
BORDER-LEFT: #000000 1px solid;
COLOR: Black;
FONT-SIZE: 10px;
FONT-FAMILY: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
BACKGROUND-COLOR: #FBA100;
}
input {
BORDER-RIGHT: #000000 1px solid;
BORDER-TOP: #000000 1px solid;
BORDER-BOTTOM: #000000 1px solid;
BORDER-LEFT: #000000 1px solid;
COLOR: 000000;
FONT-SIZE: 11px;
BACKGROUND-COLOR: #FFFFFF;
FONT-FAMILY: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}
input text {
BORDER-RIGHT: #000000 1px solid;
BORDER-TOP: #000000 1px solid;
BORDER-BOTTOM: #000000 1px solid;
BORDER-LEFT: #000000 1px solid;
COLOR: Black;
FONT-SIZE: 11px;
FONT-FAMILY: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
BACKGROUND-COLOR: #FFFFFF;
}
If I change the Background-color for "input" or "input text" to orange, everything changes to orange.
Does anybody have a clue as to how I can set the input text area in white while the submit button shows in orange? My uneducated guess is that it is something to do with the CSS syntax, which I am not very familiar.
Any comment would be greatly appreciated. Thanks in advance.
