I’m trying to change the text color to red on this specific block of text only.
Please someone help me, I’ve been trying to do this for 2hours already and I can’t seem to figure it out.
And if possible, please explain in detail so that I’m able to reproduce it on my own if I want to change other block of texts.
Website : https://sceauducoeur.myshopify.com/
password : coeur
Hi @sceauducoeur
Add the following code at the end of your base.css file:
#shopify-section-template--14881676951690__1650400265b4c14b5e > div > div > div > div {
color: red;
}
To get this working for other section, right click on a paragraph → Inspect element → then navigate up the HTML code until the whole section is highlighted → right click on the div → Copy → Copy Selector.
You will get something like the below:
#shopify-section-template--14881676951690__1650400265b4c14b5e > div > div > div > div
Add brackets and color as per the below:
#shopify-section-template--14881676951690__1650400265b4c14b5e > div > div > div > div {
color: red;
}
And add the hex/color name you need!
You are an absolute beast.
Thank you very much !
You’re most welcome @sceauducoeur !