I'm currently working on a form using Bootstrap 4 and I want to customize the style of the arrow select element. I'd like it to look like the second version shown below:
https://i.sstatic.net/oUBBI.png
I've tried various methods (referenced in this community citations needed) to modify the arrow but haven't been successful.
Could someone provide guidance on how I can achieve the desired outcome?
Below is an example of the HTML code related to the issue:
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Description" name="description">
<meta content="index,follow" name="robots">
<link href="/images/myicon.png" rel="icon" type="image/png">
<title>TITLE HERE</title>
<!--CSS-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="form-group">
<label for="exampleSelect1">Example select</label>
<select class="form-control" id="exampleSelect1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</body>