I am currently attempting to make the second navigation bar transparent so that the image behind it is visible. I have tried applying CSS to achieve this transparency:
#nav > .navbar-inner {
border-width: 0px;
-webkit-box-shadow: 0px 0px;
box-shadow: 0px 0px;
background-color: rgba(0,0,0,0.0);
background-image: -webkit-gradient(linear, 50.00% 0.00%, 50.00% 100.00%, color-stop( 0% , rgba(0,0,0,0.00)),color-stop( 100% , rgba(0,0,0,0.00)));
background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 100%);
background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 100%);
However, it seems that the slider is causing an issue where the navigation bar, even though within the slider div, is pushing the slider image down. Even after applying margin-top:-2em to adjust the slider position, the navigation bar remains opaque. Interestingly, scrolling down the page reveals the intended transparent background for the navigation. Any suggestions or advice on how to resolve this issue would be greatly appreciated.