|
this is a some css i fastly pulled of one of the sites i did, it will change all the form elements to a pinkish color, but you can make them any color you want, just add this inbetween the <head> tags.
<style type="text/css">
INPUT, SELECT, TEXTAREA {
background-color: #FF66CC;
color: black;
font-family: arial, helvetica;
font-size: 12px;
border: outset 1px #FF3399;
padding: 2;
}
</style>
|