How to change text colour of collecting

How to change text colour of collecting

Emiway
Trailblazer
255 0 48

I want to change collection list text colour as shown in a image 

Want that colour from white to black 

URL https://ninetees.shop/?_ab=0&_fd=0&_sc=1

IMG_20240501_131406.jpg

Replies 4 (4)

laddisahsi
Shopify Partner
410 43 44

Hi @Emiway 

You can follow the following steps:

1. Please remove the width from the html.
2. Please go to the Online Store.
3. Then Edit Code.
4. Please find the theme.liquid file.
5. Please add code before closing the tag </head> tag.

 

<style>

span.collection-item__title span {
    color: black !important;
}

</style>

 

 

laddisahsi_0-1714549836589.png

 

 

If this solution is worked, then please Like this and Mark this as accepted solution!

Thanks
Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!

PageFly-Amelia
Shopify Partner
626 165 238

Hello @Emiway 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

You can try the following steps I have provided to help you solve the problem you are facing:

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Store -> Themes -> Edit Code

Step 2: Choose file theme.liquid

Step 3: Add code above the tag </head>

<style>
@media (max-width: 767px) {
.collection-item__title {
   color: black !important; /* You can the value of black to value you want */
}
}
</style>

 

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

Emiway
Trailblazer
255 0 48

This Code Is Working On Mobile But Not On Dekstop 

Screenshot_2024-05-01-14-26-23-99_40deb401b9ffe8e1df2f1cc5ba480b12.jpg

laddisahsi
Shopify Partner
410 43 44

Hi @Emiway 

Did you tried my solution?

<style>

span.collection-item__title span {
    color: black !important;
}

</style>

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!