Transparent Nav Bar

How do BSS community,

has anyone been able to successfully style a navbar to have a transparent background?

i have duplicated and edited that navbar CSS files and changed background color to transparent, but its not doing what i would expect. anyone else had this issue?

This seems to work for me. I started a new project and dragged the navbar to the body and added the following CSS.

.navbar-default{
  background:transparent;
  background-image:none;
  border-color:transparent;
  box-shadow:none;
}

enter image description here

Added body background image for effect.

Do you have some other CSS file that could be overriding your custom CSS?

Saj

I think it's the background image on Boostrap CSS that keeps over writing my code. Thanks for taking a look Saj. ??