Check out this Bootstrap 4 example: https://getbootstrap.com/docs/4.0/components/forms/#select-menu
I've implemented it on my website:
<select class="custom-select">
<option value="1">Telegram</option>
<option value="2">WhatsApp</option>
</select>
However, the result is showing double arrows – one from Chrome and another as a background. Why is this happening? Also, I'm unable to set paddings on the select list itself (not the options but the select list).
UPDATE
There seems to be an issue with my Bootstrap 4 setup. When I use it directly from the CDN, it works fine. Currently, I'm using it like this:
// Importing full Bootstrap 4
@import "node_modules/bootstrap/scss/bootstrap";
My structure looks like this:
i might be using it incorrectly?