How can I modify the font color on my blog card?

Solved

How can I modify the font color on my blog card?

Nurdle
Tourist
15 0 2

Hi, I want to change the font colour on the blog card (right at the bottom) on this page. I dont want to change the colour from theme settings because it will change the colour elsewhere. 

 

thank you!

 

password is beglee

Accepted Solution (1)

Moeed
Shopify Partner
4892 1292 1566

This is an accepted solution.

Hey @Nurdle 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.card__information {
    color: black;
}
h3.card__heading.h2 {
    color: black;
}
.article-card__info {
    color: black;
}
</style>

RESULT:

Moeed_0-1693829027906.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

Reply 1 (1)

Moeed
Shopify Partner
4892 1292 1566

This is an accepted solution.

Hey @Nurdle 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.card__information {
    color: black;
}
h3.card__heading.h2 {
    color: black;
}
.article-card__info {
    color: black;
}
</style>

RESULT:

Moeed_0-1693829027906.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️