Hello,
I would like to use the sticky transparent header, but have the logo and menu hidden on page load. When the user scrolls down and the header transitions, the logo and menu would ideally fade in. Possible?
Thanks!
Brian
Hi cavanaughb!
Can you post the link to your Enfold website so we can take a look?
Regards,
Yigit
Hi!
Please remove the custom CSS code you added to hide logo and add following code to Quick CSS instead
#top .av_header_transparency #header_main {
display: none;
}
Best regards,
Yigit
Perfect! And if I just want to do this on the homepage, do I add “.home” to the beginning of the CSS code?
.home #top .av_header_transparency #header_main {
display: none;
}
Hey!
Yes and if it does not work, you can try
.home .av_header_transparency #header_main {
display: none;
}
Regards,
Yigit
Removing the #top did the trick.
Thanks again!
Brian