Answers for "change select arrow bootstrap"

1

bootstrap select box arrow not visible

// bootstrap select box arrow not visible
// Solution - Add form-select class next to the form-control class 
// for B5 Version

<select class="form-control form-select">
    <option>Select Title</option>
    <option value="1">Title 1</option>
    <option value="2">Title 2</option>
</select>
Posted by: Guest on September-01-2021
-1

select option with icon bootstrap

<select title="Select your spell" class="selectpicker">
  <option>Select...</option>
  <option data-icon="glyphicon glyphicon-eye-open" data-subtext="petrification">Eye of Medusa</option>
  <option data-icon="glyphicon glyphicon-fire" data-subtext="area damage">Rain of Fire</option>
</select>
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language