Changing the colour of text forms


Author Message
BP

Posted: 9/24/2009
Quote message 

Hi there!

I was wondering how I can change the colour of the forms, eg: the search text box, and other text boxes that might appear in a theme (sidebar widgets, etc). I've worked out how to change the colour for the comments box, but can't seem to find the right way to change colours on anything else :(

Thanks!
 
Garry

Posted: 9/24/2009
Quote message 

You can change the backkground color of forms by adding "background color to following styling property:

input, select
{
font-family:Arial,Helvetica,Sans-Serif;
font-size:12px;
font-style:normal;
font-weight:normal;
}

------------------------------
like:
------------------------------

input, select
{
background-color:red;
font-family:Arial,Helvetica,Sans-Serif;
font-size:12px;
font-style:normal;
font-weight:normal;
}
 
GerritWP

Posted: 10/1/2009
Quote message 

and also border parameters:

{
border: 5px solid #aaafff;
background-color:red;
font-family:Arial,Helvetica,Sans-Serif;
font-size:12px;
font-style:normal;
font-weight:normal;
}