Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8757541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:19:35+00:00 2026-06-13T14:19:35+00:00

I have hunted around and have not found any methods to do what I

  • 0

I have hunted around and have not found any methods to do what I would like. I would like to style the top level of a standard form drop down (selection) element.

I would like it to look like this:
enter image description here

Now I know I can style the border, text and graident with CSS but I am wondering if its easier to just make the drop down a static image?

Or is it even possible to style a drop down this way? I have never had any luck doing so.

EDIT: I found this tutorial HERE that is pretty close. But just want to see others opinions.

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T14:19:36+00:00Added an answer on June 13, 2026 at 2:19 pm

    Found my answer here, this is exactly what I want to accomplish and it uses CSS only which is a bonus:
    http://danielneumann.com/blog/how-to-style-dropdown-with-css-only/

    select { 
    font-size:1.1em; 
    text-transform: uppercase;
    font-weight: 200;
    width:195px;
    border:0; 
    border-radius: 0px;
    color:#787878; 
    background:transparent;
    padding-top: 7px; 
    padding-bottom: 10px; 
    -webkit-appearance: none;
    *width:190px; 
    *background:#58B14C;
    }
    
    #mainselection  { 
    color: #787878 !important;
    width: 197px;
    background: url("http://i.imgur.com/N6SyH.png") no-repeat scroll 165px 8px, #f5f5f5; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, -moz-linear-gradient(top, #f5f5f5 0%, #efefef 40%, #e8e8e8 100%); /* FF3.6+ */
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(40%,#efefef), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, -webkit-linear-gradient(top, #f5f5f5 0%,#efefef 40%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, -o-linear-gradient(top, #f5f5f5 0%,#efefef 40%,#e8e8e8 100%); /* Opera 11.10+ */
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, -ms-linear-gradient(top, #f5f5f5 0%,#efefef 40%,#e8e8e8 100%); /* IE10+ */
    background: url('http://i.imgur.com/N6SyH.png') no-repeat scroll 169px 8px, linear-gradient(to bottom, #f5f5f5 0%,#efefef 40%,#e8e8e8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-8 */
    border: solid 1px #D1D1D1;
    -webkit-box-shadow: inset 0px 1px 0px 0px #FFF;
    -moz-box-shadow: inset 0px 1px 0px 0px #FFF;
    box-shadow: inset 0px 1px 0px 0px #FFF;
    }
    

    ​
    Here is a live jsfiddle of it.

    Thanks!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have hunted around for answer to this one, and though have found related
Have a procedure which looks like Procedure TestProc(TVar1, TVar2 : variant); Begin TVar1 :=
Have done quite a bit of searching for a guide (of any substance) for
have a problem. At first look at this HTML <div id=map style=background-image: url(map.png); width:
have 2 questions : A computer with 32-bit address uses 2-level page table (9
I have some constants in JavaScript that I'd like to reuse in several files
I've hunted around for this, and I am sure that I am just missing
I have a help screen that can be accessed from any other screen. The
I've hunted high and low on the net and not been able to find
I apologize if this has been asked here - I've hunted around here and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.