Hello, I’ve white text instead of an logopicture. When I scroll te menu-area background change from transparent to white and the menu-items form white to black. I also want to change te text in the logo from white to black. How I do that?
Hey NiekVuurboom,
Could you post a link to where we can see the element in question please?
Best regards,
Rikard
using svg instead of jpg/png – it would be very easy to obtain this.
because Enfold places an inline svg on that case. And inline svg ( if it is pure vector svg ) could be influenced from outside ( quick css ) css rules.
if it is real text ( as participant i do not see private content area) –
you can even animate the color change:
f.e.: ( adjust the selectors to your needs – you see the class header-scrolled is added after scrolling)
#top .logo-title {
color: red;
transition: color 2s ease
}
#top .header-scrolled .logo-title {
color: green;
transition: color 2s ease
}