Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How can I change the font color and properties of my Collection Cards?

How can I change the font color and properties of my Collection Cards?

edula
New Member
6 0 0

Hello,

 

I would like to change the font color and font properties of the text of my Collections Cards.

I would like to make the font a custom color, and make it bold. Would appreciate your help.

 

Screenshot 2023-09-27 at 16.19.12.png

Replies 7 (7)

Moeed
Shopify Partner
6301 1711 2057

Hey @edula 

 

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


edula
New Member
6 0 0

I can't share the store URL and password unfortunately since we are not yet published. 

I am using the theme Colorbook and already changed the code from base.css:

.collection-list__item .card__information {
justify-content: center;
align-items: center;
display: flex;

 

Now i would also like to change the color and boldness of the text information

edula
New Member
6 0 0

Here is how it looks right now:

Screenshot 2023-10-02 at 13.31.50.png

Moeed
Shopify Partner
6301 1711 2057

Hey @edula 

 

You can try to update your code with the following the code.

.collection-list__item .card__information {
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: bold !important;
    color: black !important;
}

 

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

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


edula
New Member
6 0 0

thank you for your answer. I updated it like this from base.css:

.collection-list__item .card__information {
justify-content: center;
align-items: center;
display: flex;
font-weight: bold !important; color: black !important;

 

however it does not work for a reason

Moeed
Shopify Partner
6301 1711 2057

You can try to share the preview URL of your draft theme then I can provide you a correct solution.

 

Best Regards,

Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Create high-converting pages - PageFly Page Builder.


edula
New Member
6 0 0