Hey everyone!
Is there a way to target specific product pages to add css?
I would like to change the header color just for a couple of pages
Hey everyone!
Is there a way to target specific product pages to add css?
I would like to change the header color just for a couple of pages
One simple way to do it is to add the style element to your product description.
When you edit product description, click the </> button and add something like:
Otherwise there are several ways to do it in liquid, like
{% if product.title == "red product" %}
{% endif %}
or more complex ones…