Log in

View Full Version : Styled Drop List



dude9er
02-26-2009, 05:34 AM
Check out this links' "Choose a Category" drop down list, it has been styled. Does anyone know how to style a drop down box?

http://www.blogtalkradio.com/onair

THANKS!

Snookerman
02-26-2009, 06:38 AM
On that page, the select just has a specified width and height, and color and font-size, e.g.:

select {
color: blue;
font-size: 1.6em;
width: 200px;
height: 30px;
}

You can also target only the select tags you want by using class or id values.

Good luck!