Reputation: 1
I am trying to change the custom bootstrap default form selector arrow. Is there any way to change the default arrow in the form and add this <i class=" fas fa-caret-down"></i>
caret down icon?
Upvotes: 0
Views: 48
Reputation: 2056
.custom-select
is the class that add this icon as a background
So you can download the SVG
and override the class and it should work.
am sure there is a better way than that. But it's the only way I could think of at the moment.
.custom-select {
background: url('../images/caret-down-solid.svg') no-repeat right .75rem center/8px 10px;
}
Upvotes: 1