Greetings! I am currently utilizing Bootstrap's Links and buttons
My objective is to modify the color of the active button highlighting, which is set to white by default, to a different color:
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="list-group">
<h2><a href="#" class="list-group-item active">
<strong>T E X T</strong></a>
<a href="page1.html" class="list-group-item list-group-item-action"> Link 1 </a>
<a href="page2.html" class="list-group-item list-group-item-action"> Link 2 </a>
</div>
</div>
</div>
</div>
I attempted to achieve this following the guidance provided in this response to a similar inquiry using CSS, since I don't have scss/bootstrap.scss in my module, only _bootstrap-overrides.scss
Added to the end of bootstrap.css:
a {color: #8cf1dd;}
a:hover {color: #e9d214;}
and within the <head>
section of the HTML encompassing Bootstrap Links and buttons component:
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
.card .nav-link {color: #8cf1dd;}
.card .nav-link:hover {color: #e9d214;}
</style>
Despite implementing these changes, the color remains unchanged and I desire a result similar to this