Top Menu Panel Translucent / Transparent?

I came across a neat feature on a site which froze the menu at the top of the site --- it is partially transparent / translucent to show stuff underneath the "sticky menu" at the top.

How would I turn this on or off in cs-cart multi-vendor and how would I set the level of transparency?

http://www.fallenhero.com/

I am curious to see how it would look for my site!

Transparent-Menu.png

I came across a neat feature on a site which froze the menu at the top of the site --- it is partially transparent / translucent to show stuff underneath the "sticky menu" at the top.

How would I turn this on or off in cs-cart multi-vendor and how would I set the level of transparency?

http://www.fallenhero.com/

I am curious to see how it would look for my site!

Try this css code

.navbar.navbar-default.navbar-fixed-top{
    background: rgba(240, 240, 240, 1);
}
Where value "1" - level of transparency
Value "1" - 0% of transparency
Value "0" - 100% of transparency
Value "0,5" - 50% of transparency

Try this css code

.navbar.navbar-default.navbar-fixed-top{
    background: rgba(240, 240, 240, 1);
}
Where value "1" - level of transparency
Value "1" - 0% of transparency
Value "0" - 100% of transparency
Value "0,5" - 50% of transparency

Thanks for the quick response. I tried both 0,5 and 0.5 and it didn't seem to make any changes.

Maybe .navbar isn't what this is called on my site? A different variable? http://fossils1.wwwls17.a2hosted.com/

.navbar.navbar-default.navbar-fixed-top{
background: rgba(240, 240, 240, 0,5);
}
and
.navbar.navbar-default.navbar-fixed-top{
background: rgba(240, 240, 240, 0.5);
}

Thanks for the quick response. I tried both 0,5 and 0.5 and it didn't seem to make any changes.

Maybe .navbar isn't what this is called on my site? A different variable? http://fossils1.wwwls17.a2hosted.com/

.navbar.navbar-default.navbar-fixed-top{
background: rgba(240, 240, 240, 0,5);
}
and
.navbar.navbar-default.navbar-fixed-top{
background: rgba(240, 240, 240, 0.5);
}

Sorry. Wrong css selector. Try this

.sticky-wrapper .tygh-top-panel{
    background: rgba(240, 240, 240, 0.5);
}

Thanks! This worked brilliantly!

I tried out a variety of transparency settings at with my current menu it becomes unreadable with transparency due to text being too light of color, but if I leave the CSS code there with it set to 1 for no transparency in case I decide to use it later after re-designing my menus, will it impact website performance?

Nice, what skin you use?

Thanks! This worked brilliantly!

I tried out a variety of transparency settings at with my current menu it becomes unreadable with transparency due to text being too light of color, but if I leave the CSS code there with it set to 1 for no transparency in case I decide to use it later after re-designing my menus, will it impact website performance?

It will be work normal.