How to change the color of my submit button

hi, I dont know if its simple or not but I would like to change the color of my submit button, here www.dpelufo.com/home.htm

Enviar = Submit :slight_smile:

<input name="submit" type="submit" value="Enviar">

If someone can point me out in how to do it it would be great, or any clue :stuck_out_tongue:

Thanks

Well I just tryed a cheap fix, it doesn’t look all that good but it works :wink:

You should really just make your own.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.unnamed1 {
	background-color: #009900;
}
-->
</style>
</head>

<body>
<form name="form1" method="post" action="">
  <input name="Submit" type="submit" class="unnamed1" value="Submit">
</form>
</body>
</html>

great! thanks digital! :thumb: