Looking for some help with this code snippet:
<button type="button" class="btn btn-success" onclick="validateForm()">Book appointment</button><br><br>
<p id="submitted" style="background:black"><p>
https://i.sstatic.net/WeznQ.png https://i.sstatic.net/7RdMJ.png
The button is shown in black, and when active, it turns green. How can I customize the active color of this button? I've attempted different solutions like:
.btn.btn-success:active{
background: #933A16;
}
Or
btn.btn-success:active{
color #933A16;
}
Or
.btn:active{
color: #933A16;
}
Unfortunately, none of these methods have changed the active color, which remains green. The CSS file doesn't contain any other instances of green. Any insights on how to alter this color?