Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form field backgrounds

Status
Not open for further replies.

AlanGNW

Technical User
Nov 30, 2005
16
0
0
I'm new to dreamweaver (migrating from FP after many years) and finding it okay to use if a little unfamiliar... Here's my question - how do I easily change the background colour of form field text and drop down boxes?

thanks for any help you can offer.
 
You can use css.
Here is a quick snip of what is applied to all form elements.
================================
/*--- Form Elements (General Setting) ---*/
input, textarea, button
{
color: #000000;
font-family: verdana, sans-serif;
border: 1px solid #8DC6FF;
background-color: white;
}
input, button
{
font-size: 90%;
}

textarea
{
font-size: 100%;
color: #000000;
font-family: verdana, sans-serif;
}
/* All input elements that can be checked (checkboxes or radio buttons)= remove */
input.check
{
}
/* Selects List */
select
{
font-size: 90%;
font-weight: normal;
color: #000000;
font-family: verdana, sans-serif;
}
================================

You can pick it apart to your needs.
All the best!

:--------------------------------------:
Do the DW »|MostarNetworks|
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top