My form is consists of single and multiple dropdown select. So I prefer to use 1 class only for my single and multiple which is selectpicker. However, I want to change the default grey color for Bootstrap 4 Dropdown selectpicker class to clear color. Where is exactly color that needs to be changed in CSS file for .bootstrap-select class?
Current View (actually this no disabled but the view is like disabled)

To be like this (I try to use custom-select2 class as example of clear color)

HTML
<div class="form-group">
<select id="region" class="font-14 selectpicker form-control">
<option value="">-- REGION --</option>
<option value="allregions" id="allregions">All Regions</option>
</select>
</div>
Check the color element.
The solution is btn-light in my case
.btn-light{
background-color: #FFF;
color: #000;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With