Search Flexile Child Theme Documentation

Search for answers or browse our knowledge base.

< All Topics
Print

Change logo color on static menu

In order to adjust the color of the logo on white static fixed navigation bar and make it dark, the following CSS Snippet is used in Flexile: 

et-fixed-header #logo {
filter: brightness(0);
}

You may paste the following CSS snippet to the Divi Theme Options Custom CSS area to override or remove it:

.et-fixed-header #logo {
filter: none !important;
}

@media screen and (max-width: 980px)
{
#main-header #logo {
filter: none !important;
}
}