Tagged: header
HI – I looked through existing posts and couldn’t find this. I want to take this style in the nav bar
div.container.av-logo-container {
}
and make it darker with an opacity. For example:
div.container.av-logo-container {
background-color: #0f020f;
opacity: .3;
}
If I do that though, everything (the navigation items, logos) becomes opaque as well. How can I get the transparent part darker, but have the navigation stay looking as it is?
Hey mshaivitz,
Instead of using this:
div.container.av-logo-container {
background-color: #0f020f;
opacity: .3;
}
try using this one instead:
div.container.av-logo-container {
background-color: rgba(15,2,15,0.3);
}
Let us know if this helps :)
Best regards,
Nikko
PERFECT!!!!! thank you!
Hi,
Glad we could help. Thanks for using Enfold :)
Best regards,
Nikko