So I’m relatively new to Shopify, and I’m using the Prestige theme to build my site.
Could anybody tell me if there is some simple code I could use to turn my site’s logo from light to dark on every page but the home page? (On both desktop and mobile).
I am running into an issue, because I need it to be light colored on the homepage, as it sits atop a hero section with photos. But then on the other pages, which are light-colored, it disappears.
There are 2 solutions for it but keep note you have to do customization a/to the idea I’ll share.
If you are not aware about code then you can try to contact theme support or hire a developer.
Use SVG logo and change it’s color with css a/to the template.
Create an option parallel to the existing logo to upload logo for inner page. And after that while calling it in code make it conditional.
e.g.
if template == homepage
then use default logo with existing code
else
for inner pages use the custom option logo
I hope this will gives you an idea to implement it.
Thanks for the help. Unfortunately, I’m so new to Shopify that I don’t really know what to do with the information. I have some CSS experience and know what if/else statements are, but I know next to nothing about liquid as a language and only want to make this one small change to my header. I appreciate it. I will keep searching online for a way to implement the solution.