Hi,
I have used this code many times before and it has worked perfectly, however, this time it’s not working and I can’t seem to figure out why. I am trying to make my nav bar transparent, and then on scroll have a solid color just like this site: www.wildroseorganizing.com
The CSS I am using now (that isn’t working) is:
/* Home - header transparent for fullscreen bg image */
.home.x-navbar-fixed-top-active .masthead {
position: absolute;
top: 0;
width: 100%;
}
.x-navbar-fixed-top-active .x-navbar {
background-color: transparent;
border-bottom:none;
}
.x-logobar {
background-color:transparent;
}
.x-navbar-fixed-top-active .x-navbar.x-navbar-fixed-top {
background-color:#ffffff;
}
body .x-navbar.x-navbar-fixed-top {
background-color: #eeeee9 !important;
-webkit-box-shadow: 0px 2px 5px 0px rgba(153,153,153,1);
-moz-box-shadow: 0px 2px 5px 0px rgba(153,153,153,1);
box-shadow: 0px 2px 5px 0px rgba(153,153,153,1);
}
The website is: http://184.154.245.235/~whitewo7/
Thank you!
Dana