Tagged: logo
I would like to prevent the logo from changing from the alternate logo, used on transparent headers, to the main logo when scrolling on the page (see site link in private content).
How can I achieve this?
Hey emilbroll,
Please go to Enfold theme options > Header > Transparency Options and remove transparent logo
Best regards,
Yigit
I might not have explained it clearly – I want to use the alternative logo, but when scrolling a page that uses the alternative logo, I don’t want the other logo to appear.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#top .logo a > img {
opacity: 0;
}
.logo img.alternate { opacity: 1; }
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
Thanks for the help, this is what ended up being what I wanted :)
.html_header_transparency #top .logo a > img {
opacity: 0;
}
.html_header_transparency .logo img.alternate { opacity: 1; }