Attempting to change the background color of bootstrap's navigation bar to a lower opacity rgba one, but facing difficulties. There are no changes being reflected at all. Below is the custom navbar CSS:
.navbar-custom {
background-color: rgba(255,255,255,.3);
}
Here is the HTML code for the navbar:
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
NAVBAR CONTENT GOES HERE
</nav>