Changing the color of my testimonials block

Hey all,

I’m trying to change the font color in a testimonials blog on a draft theme for my homepage. The theme I’m working on is called 2023 Theme and it’s the second Testimonials block where I want to change the color. I want to use #8693B3 for the heading in that block and #4B7A7D for the regular text. Can someone help me with what code I should add?

Store: https://www.ecocollective.com or ecocollective.myshopify.com.

Thank you!!!

Hi @ecocollective1

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/styles.css
  3. Add code below to bottom of file
.cc-testimonial .cc-testimonial__column .cc-testimonial__content > h3{
	color: #8693B3!important;
}
.cc-testimonial .cc-testimonial__column .cc-testimonial__content .rte *{
	color: #4B7A7D!important;
}

Thank you!!!