Hi, i need to change the color of the header menu when the page scrolls down.
How can i change that?
Regards
Hi druzes!
Please go to Enfold theme options > Advanced Styling and edit “Main menu links”. You can change transparent header menu color in Enfold theme options > Header > Transparency Options
Best regards,
Yigit
Thank you, but what i mean is the entire header, not only the menu links, sorry.
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.header-scrolled #header_main {
background-color: red;
-webkit-transition: background-color .3s ease-in-out;
transition: background-color .3s ease-in-out;
-moz-transition: background-color .3s ease-in-out;
}
#header_main {
-webkit-transition: background-color .3s ease-in-out;
transition: background-color .3s ease-in-out;
-moz-transition: background-color .3s ease-in-out;
}
Regards,
Yigit
worked just great ;) thank you