View Single Post
Old 02-15-2008, 02:56 PM   #4 (permalink)
Rendair
The Addict
Upcoming Programmer Top Contributor 
 
Rendair's Avatar
 
Join Date: Nov 2007
Location: UK
Posts: 319
Thanks: 18
Rendair is on a distinguished road
Default

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{

   
bordersolid 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{

   
bordersolid thin;
   
background-color#000000;
   
color#FFFFFF; 

}

</
style
PHP Code:
<input name="Email" type="text" id="Email" size="50"
__________________
www.jooney.co.uk - the online portfolio
Send a message via MSN to Rendair
Rendair is offline  
Reply With Quote
The Following User Says Thank You to Rendair For This Useful Post:
bmathers (02-15-2008)