I am using Enfold 3.1.3 with WordPress 4.1. I have the sticky header turned on in the theme options, but I’d like to disable it on certain pages — the home page, for example. The home page also uses the transparent header.
Is there CSS that will do this for me? I’m having trouble tracking down how to make that change. Thanks!
Hi Scott!
Thank you for using Enfold.
You can add this to the Quick CSS field:
.html_header_top.html_header_sticky .home .header-scrolled {
position: absolute !important;
}
If it doesn’t work, try this:
.html_header_top.html_header_sticky .home #header {
position: absolute !important;
}
Cheers!
Ismael
Thanks! Substituting either “.av_header_sticky” or “#header”for “.header-scrolled” does the trick.