fkoessler
fkoessler

Reputation: 7257

Custom styling for Bootstrap select

I find the select Twitter Bootstrap's dropdown very ugly, how can I deactivate Bootstrap only for the select widget? Or is it possible to customize the way the select dropdown looks?

Upvotes: 8

Views: 51880

Answers (2)

silviomoreto
silviomoreto

Reputation: 5897

Check it out: https://developer.snapappointments.com/bootstrap-select/

You can change the color of the dropdown button through the different classes. And if you want another color, just override it in css. E.g.:

.btn {
    background-color: #FFF;
}

Upvotes: 15

Lodder
Lodder

Reputation: 19733

You can overwrite the css styling by simply adding your own for example:

select {
   background: #333333;
}

This is a very basic example but its just an example of how you can customize it to your own liking.

Upvotes: 4

Related Questions