Is there a way to get rid of the unsightly double arrow in the select element? I have tried various solutions I found online, but none seem to be effective.
<div class="form-group">
<label for="date">Date</label>
<div class"row">
<div class="col-5">
<input.....>
</div>
<div class="col-7">
<div class="input-group">
<select class="custom-select">
<option.....>
</select>
</div>
</div>
</div>
</div>
Image:
I tested these methods:
- How to remove the arrow in dropdown in Bootstrap 4?
- Remove arrows from form element select in Bootstrap 3
- Select removing dropdown arrow
- How to replace arrow dropdown select in boostrap
- Change color and appearance of drop down arrow
Unfortunately, none of them resolved the issue.