I want my text on the “Products” and “Terms of Service” page to be black so I can see it instead of white like on my Home Page
Store is piping-modifications.myshopify.com
Password is - Thatbob
I want my text on the “Products” and “Terms of Service” page to be black so I can see it instead of white like on my Home Page
Store is piping-modifications.myshopify.com
Password is - Thatbob
@simsie - add this css to the very end of your theme.scss.css file and check
.template-collection .megamenu .site-nav__dropdown-link {color: #000 !important;}
.template-page .megamenu .site-nav__dropdown-link {color: #000 !important;}
Hi @simsie ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
{% if template contains "product" or handle contains "terms-of-service-piping-modifications" %}
{% endif %}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
my entire store is .liquid
is it possible to make the text black and keep it transparent?
you can try
{% if template contains "product" or handle contains "terms-of-service-piping-modifications" %}
{% endif %}
Lifesaver! (I really need to learn how to code haha)