I am looking to make the dropdown button transparent, but simply using background:transparent;
only shows the border. I want the arrow icon inside the dropdown button and the right border to be visible as well. Here is the code:
<div class="dropdown">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Regular</a>
<a class="dropdown-item" href="#">Link 2</a>
</div>
</div>
<< This is the desired look that I am aiming for