Change the text color for Testimonial using Dawn Theme

Solved

Change the text color for Testimonial using Dawn Theme

davidignite
Tourist
10 0 3

Hello, I am currently using the Dawn theme and am trying to change the color of the text for the Testimonials section of the main page. I am using the Testimonials section through Shopify API, and can find a way to change the background but not the text. 

 

Please let me know what additional information or questions you may need from me as this is the first site I have made using Shopify. 

 

Thank you in advance!

 

Screenshot 2024-08-27 145402.png

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
9870 2351 2947

This is an accepted solution.

Thanks for the info, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

ul#Slider-template--15642360807490__testimonial_eDdFke .multicolumn-card {
    background: #121212;
}
ul#Slider-template--15642360807490__testimonial_eDdFke .multicolumn-card * {
    color: #fff;
}

 

And Save. 

Result:

Made4uoRibe_0-1724789433179.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 7 (7)

Made4uo-Ribe
Shopify Partner
9870 2351 2947

Hi @davidignite 

Would you mind sharing your store URL? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
davidignite
Tourist
10 0 3

Hello! The url is https://a6aaf7-b7.myshopify.com/ and the password is MSRed

Made4uo-Ribe
Shopify Partner
9870 2351 2947

This is an accepted solution.

Thanks for the info, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

ul#Slider-template--15642360807490__testimonial_eDdFke .multicolumn-card {
    background: #121212;
}
ul#Slider-template--15642360807490__testimonial_eDdFke .multicolumn-card * {
    color: #fff;
}

 

And Save. 

Result:

Made4uoRibe_0-1724789433179.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
davidignite
Tourist
10 0 3

This worked great! Thank you so much! 

davidignite
Tourist
10 0 3

I also forgot to mention the Heading and Sub-heading . Is it possible to change this font to white? See picture: 

 

Screenshot 2024-08-27 152621.png

Made4uo-Ribe
Shopify Partner
9870 2351 2947

Sure, add this code then on same file. 

 

.multicolumn .title {
    color: #fff;
}

 

And Save.

Result:

Made4uoRibe_0-1724791241504.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
davidignite
Tourist
10 0 3

You are incredible! Thank you so much!