Transparent navbar

I wanted navbar to be transparent

added to custom css:
.x-navbar {
background-color: transparent !important;
}

It works only on homepage. Why?

Hi there,

The code above should take effect site wide but it also depends if there are other CSS codes that overrides it.

I tried checking on the site that is in your licenses and this code overrides that code you tried:

.x-navbar, .x-navbar .sub-menu {
    background-color: rgb(255,255,255) !important;
}

Try removing x-navbar in the selectors.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.