Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/08/2003, 19:46
Avatar de mifune
mifune
 
Fecha de Ingreso: junio-2003
Ubicación: BCNeta
Mensajes: 466
Antigüedad: 20 años, 10 meses
Puntos: 0
Prueba con CSS, por ejemplo:

Esto entre <head> y </head>

<style>
.boton {
font-family: Verdana, sans-serif;
font-size: 10px;
color: #E7F8FF;
border: 1px double #E7F8FF;
background-color: #4A7E7E;
font-weight: bold;
cursor: hand;
}
</style>

y luego en el input pones class=boton:

<input class="boton" type="submit" name="Submit" value="Enviar">

Saludos.