PDA

View Full Version : Changing button look


florida
01-09-2003, 02:38 PM
On a submit button is there anyway to change the button colors and get rid of the border background of the button? Basically change the Button "look"

<input type="button" value="Submit">

lala
01-09-2003, 02:49 PM
<input type="image" src="image" value="Submit">

i think that will work

beetle
01-09-2003, 03:14 PM
<input type="button" value="Submit" style="border-width:0; background-color: #F00; color: #00F">

Or whatever HEX values you'd prefer for colors

florida
01-09-2003, 03:47 PM
Thanks that works in IE but Netscape 4 it still doesnt change the colors or background. Any suggestions for Netscape 4?

beetle
01-09-2003, 04:30 PM
Originally posted by florida
Thanks that works in IE but Netscape 4 it still doesnt change the colors or background. Any suggestions for Netscape 4? Don't expect much of anything to work in NS4. It is, after all, over 5 years old.

Use lala's suggestion to appease NS4.