PDA

View Full Version : how to change the color of my submit button



berkoWitZ
September 28th, 2004, 02:21 PM
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 :P

Thanks

Digitalosophy
September 28th, 2004, 02:26 PM
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>

berkoWitZ
September 28th, 2004, 04:24 PM
great! thanks digital! :thumb: