Results 1 to 2 of 2

Thread: Styled Drop List

  1. #1
    Join Date
    Apr 2006
    Posts
    30
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Styled Drop List

    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!

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    On that page, the select just has a specified width and height, and color and font-size, e.g.:
    Code:
    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!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •