0

I have standard select list - https://i.stack.imgur.com/qm4bj.jpg

I need to make it beautiful

enter image description here

Beautiful select made using Bootstrap framework.

Here is html:

.field select{
    width:300px;
    font-size: 14px;
    border: 1px solid rgba(98,141, 40, 0.5);
    border-radius:5px;
    -moz-box-shadow: inset 0 0 1px 1px rgba(98,141, 40, 0.2);
    -webkit-box-shadow: inset 0 0 1px 1px rgba(98,141, 40, 0.2);
    box-shadow: inset 0 0 1px 1px rgba(98,141, 40, 0.2);  
}

Box-shadow isn't adding, I want to style view of option's list.

How I can change arrow?

How I can make it looking good? Should I do this using CSS or jQuery?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Denys Medynskyi
  • 2,353
  • 8
  • 39
  • 70

2 Answers2

1

Why not use http://harvesthq.github.com/chosen/ and just change your css to suit you

0

There are a lot of jQuery plugins you can use, just google for "select plugin jquery".

One of my fav. is DropKick.

napolux
  • 15,574
  • 9
  • 51
  • 70