02-15-2008, 02:56 PM
|
#4 (permalink)
|
|
The Addict
Join Date: Nov 2007
Location: UK
Posts: 319
Thanks: 18
|
If you wish to change a certain fields colour then you can set a class name for it
PHP Code:
<style type="text/css">
.MyField{
border: solid thin; background-color: #000000; color: #FFFFFF;
}
</style>
PHP Code:
<input name="Email" type="text" id="Email" size="50" class="MyField">
or you can simply use the id of that field instead of creating a class attribute
PHP Code:
<style type="text/css">
#Email{
border: solid thin; background-color: #000000; color: #FFFFFF;
}
</style>
PHP Code:
<input name="Email" type="text" id="Email" size="50">
|
|
|