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 
<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 
Thanks
system
2
Well I just tryed a cheap fix, it doesnβt look all that good but it works 
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>
system
3
great! thanks digital! :thumb: