Hello!
I'm designing a website (WIP: https://villalba.studio/website_2fa0b3db/) for an architectural studio and I'm trying to get the title and custom burger (= binoculars) to change color in certain pages... For instance
Green on the 'about' https://villalba.studio/website_2fa0b3db/info/
Red in the index https://villalba.studio/website_2fa0b3db/index/
I succesfully managed to change the site title logo color with this CSS
.slug-info .sitetitle-txt-inner {
color: #47592f !important;
}
BUT I'm struggling to change the icon... We cannot simply change the colour (as is an png – or svg – file) so I thought I could create an alternative icon to be used – as custom overlay burger – only in that particular page.
I think I need something along this lines, but the right syntax
.slug-home .custom-overlay-burger {
<img src="https://villalba.studio/website_2fa0b3db/wp-content/uploads/2024/10/oo_Identificador_blanco.png">
}
Thanks in advance