Forum Moderators: open

Message Too Old, No Replies

Changing the look of a form's Submit button

         

CherishedSites

11:16 am on Apr 21, 2005 (gmt 0)

10+ Year Member



Hi,

Does anybody know how to change the look of a Submit button on a standard HTML form?
Instead of the normal button I want to have just text saying "submit". Is it perhaps a play around with the CSS that is necessary?

Thanks!

birdbrain

12:26 pm on Apr 21, 2005 (gmt 0)



Hi there CherishedSites,

if you just want the button text changed....

[blue][3]<input type="submit" value="submit"/>[/3][/blue]

....if you wish to remove button effects also...

[blue][3]
<style type="text/css">
<!--
#sub {
background-color:transparent;
border:0px solid #000;
}
//-->
</style>[/3]
[/blue][blue][3]
<input id="sub" type="submit" value="submit"/>[/3][/blue]

birdbrain