Hi,
As you may know, Shopify Themes (I’m using Dawn) only allows you to choose 1 font color for ALL PAGES headings. Mine is black.
However, for the home page + for my main line’s page (https://daiquiriparis.com/collections/daiquiri-daiquiri), I would need it to be white.
How could I do that?
Theme : Dawn 6.0.2
Website : www.daiquiriparis.com
Thanks a a lot !
1 Like
Hello There,
-
In your Shopify Admin go to online store > themes > actions > edit code
-
Find Layout > theme.liquid and paste this at the bottom of the file:
{% if template.name == "index" %}
{% endif %}
1 Like
Hello @contactdaiquiri
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
.banner__box span {
color: #fff !important;
}
1 Like