How can I solve text color issues in my Dawn theme?

Hi :slightly_smiling_face:

I have a couple of issues i am trying to solve and any help would be much appreciated

1- Some parts of my text are in white on a white background and i would like to know which code i use to change this

  • homepage - image with text- text needs to be either dcc9ff or bb97fd instead of white

  • product pages - featured product text needs to be either dcc9ff or bb97fd instead of white

can some one provide me with the code for this & tell me where to put the code

2- my terms and conditions text is all off to the side of the screen - how do i fix this please?

https://ohlbk1atn93jbwqv-57300123695.shopifypreview.com

Thanks in advance

Hello,

Add the following code to the base.css file.

.image-with-text__text p {
color: #bb97fd !important;
}
.product__title.h2 {
color: #bb97fd !important;
}
.badge {
color: #bb97fd !important;
}

Before adding this code to the theme, you should make a backup of the theme.

Hello @Self1007 ,

You need to put below css in theme.liquid file under title tag

.card__inner .card__badge .badge { color: #bb97fd; } .featured-product{ color: #bb97fd; } .rte blockquote { display: initial; align-content: center; }

Hopefully that helps.

1 Like

Hi

Thank you to both of you

This has helped on the product page but not the image with text on the homepage

also do you know how i can change the text on my terms & conditions page to sit in the middle of the page- its sitting off to the side wierdly

Thanks again