The problem I’ve run into is that we have a main website and then a private, password protected collections page acting as our distribution page. I already changed the product grid background for the distribution page, but I need to change the text color along with it for all the product titles, price, and general text without changing the overall, main website text colors.
I’ve tried a couple css codes but none have worked. Thanks for the help!
@theycallmeSaver the password is: onetime
Hi @sodenbach
You only need the text color change right?
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.row.full-width-row .collection-container.section-spacing-bottom * {
color: white;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Thanks for the reply, but I don’t have a “base.css, style.css or theme.css” file at all in the code.
I just tried putting it into a custom liquid at the bottom of the page and it worked! Thanks for the help!
1 Like