Results 1 to 9 of 9

Thread: DropDown Menu Border color

  1. #1
    Join Date
    Aug 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default DropDown Menu Border color

    Hi

    i want to know how to change the border color for a drop down list(List/Menu) in css?

    If i change the border color in css, Firefox supports but Internet explorer is not supporting.

    Any Solutions?

    Regards
    Nirupamavinoth

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    What drop down menu are you using? Please include a link to it, and a link to your page with the problematic code.
    Jeremy | jfein.net

  3. #3
    Join Date
    Aug 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Drop down menu

    hi

    Please see the attached image. This is the dropdown menu which i am using.
    I want to change the bordercolor of this, ie the border of that dropdown and the arrow color also to my design look and feel.

    Regards
    Nirupama

  4. #4
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    Code:
    <style type="text/css">
    select{
    border:1px;
    border-style:solid;
    border-color:#ff4400;
    }
    </style>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  5. #5
    Join Date
    Mar 2007
    Location
    New York, NY
    Posts
    557
    Thanks
    8
    Thanked 66 Times in 66 Posts

    Default

    Quote Originally Posted by Nyne Lyvez View Post
    Code:
    <style type="text/css">
    select{
    border:1px;
    border-style:solid;
    border-color:#ff4400;
    }
    </style>

    or.. you could just use
    Code:
    <style type="text/css">select{ border: 1px solid #ff4400; }</style>
    :-P
    - Josh

  6. #6
    Join Date
    Aug 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Not working

    Hi

    I am not able to understand your solution. Can u Please tell me where i have to paste this code and will this change the border color of the dropdown?

  7. #7
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    paste either example we gave you in the "head" of your page... In other words, somewhere between these two HTML tags <HEAD> & </HEAD>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  8. #8
    Join Date
    Aug 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yes Its working....!!!! Thanks a Lot!!!

  9. #9
    Join Date
    Aug 2008
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    But this will not support IE? Bec in IE the border color is not changing. Its working only in firefox.

    Regards
    Nirupama

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
  •