Hi Everyone,
I was wondering if there is a way to change the colour of this text only on my home page, without changing the colour everywhere on the home page and through the rest of the site.
I would like the highlighted section to be white while the rest of the page and section and headers remain pink. Is it possible to do this? Thank you
Hi @AuthorAngel
Could you share your store link and password to view store?
Hello @AuthorAngel 
Inside Shopify Admin, you can go to Edit theme code, open file base.css, and add this code at the bottom
#shopify-section-template--20987553055022__rich_text * {
color: #FFF;
}
The result
Hope that helps!
Thanks @ZenoPageBuilder , but I need the headings to remain pink?
Then use this code instead
#shopify-section-template--20987553055022__rich_text .rich-text__text,
#shopify-section-template--20987553055022__rich_text .rich-text__buttons {
color: #FFF;
}
1 Like
@ZenoPageBuilder that’s perfect thank you so very much 
1 Like