Reply To: Need help with Transparent Menu with Beaver Builder

Home Forums Support Need help with Transparent Menu with Beaver Builder Reply To: Need help with Transparent Menu with Beaver Builder

Home Forums Support Need help with Transparent Menu with Beaver Builder Reply To: Need help with Transparent Menu with Beaver Builder

#213602
Tom
Lead Developer
Lead Developer

So you would want to add this CSS only in pages where you want it to happen. Our Simple CSS plugin adds a metabox to your pages so you can do this.

.site-header {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 500;
}

#site-navigation, 
#site-navigation .main-nav li a {
    background: transparent;
}

Let me know 🙂