I want my navigation buttons to be visible, and the actual bar that spans the entire page has full opacity. Whenever I change the opacity of the navigation bar, it affects the classes inside it, even when I indicate that these classes do not have transparency.
I posted an image of what I'm trying to reproduce. As you can see, the links are displayed in full, but the navigation bar is invisible, which allows you to display the full background image. It may look like a solid red bar, but I assure you that it is an invisible navigator.

Any help would be appreciated super! Thanks.
Here is my HTML for the navigator:
<div class="custom_nav"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="index.html">Homegrown</a> <div class="nav-collapse"> <ul class="nav nav-pills"> <li class="active"><a href="index.html">Home</a></li> <li><a href="index.html">About</a></li> <li><a href="index.html">Contact</a></li> </ul> </div> </div> </div> </div> </div>
So far, I have been trying to edit my CSS as follows:
ul .nav .nav-pills {background:rgba(255,255,255,0.5)} .custom_nav { .navbar.navbar-fixed-top { background:rgba(255,255,255,.5); } .navbar .nav > .active a, .navbar .nav > .active a:hover, .navbar .nav > li a:hover { background:rgba(210,105,30, 0); text-shadow:none; } }
source share