If I change the colour value in the style tag (COLOR: white to say, RED, the colour of the 'Submit', and 'Reset' buttons changes to red, and so does the colour of the text the user types in the form.
Is it possible to change the colour of the words 'Submit' and 'Reset', while maintaining the colour white as the colour of the text in the form's fields?
Originally posted by laTortuga
border:solid 1 D38F50;
I'd like to mention that you have no less then 2 errors in that line.
#1 You MUST specify a unit with your width. You probably want 1px
#2 D38F50 is an invalid color. Again you need a unit. If it'a a hexvalue it should be #D38F50
To sum it up use eg
border:solid 1px #d38f50;
Also worth mentioning is that you shold always end a list of fonts with a generic fontfamily eg:
font-family: verdana,arial,helvetica,sans-serif;
and the use of points for fontsizes should only be used for media PRINT, not media SCREEN.
For stuff that is supposed to be displayed on a monitor, use pixel or preferably % eg
font-size: 80%;
Bookmarks