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

Re: Dawn Theme, Modify Individual Coloumn colors in a Multicolumn Section

Dawn Theme, Modify Individual Coloumn colors in a Multicolumn Section

JesusGomicare
Excursionist
28 0 4

Hello there, 

 

I've been trying to modify the colors of each individual column in a multicolumn, but nothing seems to work. 

 

Basically I want to be able to modify the colors of each separate column using a Custom CSS, that way I can do it differently in specific sections of a page. I.e in a product page Multicolumn 1 will have all columns in the same color, but Multicolumn 2 will have each column in different color.

 

Can anyone help me with this please?

 

Thanks!

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
9034 2160 2664

Hi @JesusGomicare 

Would you mind to share 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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
JesusGomicare
Excursionist
28 0 4

Here it is https://gomicare.es/products/gomicare-sleep-well. The one I need to modify is the second multicolumn, the one that has no info

Made4uo-Ribe
Shopify Partner
9034 2160 2664

Thanks for the info, this multicolumn?

Made4uoRibe_0-1713386652359.png

If it is check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

li#Slide-template--21110267019587__multicolumn_CFVEtn-1 .multicolumn-card.content-container {
    background: red;
}

li#Slide-template--21110267019587__multicolumn_CFVEtn-2 .multicolumn-card.content-container {
    background: green;
}
li#Slide-template--21110267019587__multicolumn_CFVEtn-3 .multicolumn-card.content-container {
    background: yellow;
}
li#Slide-template--21110267019587__multicolumn_CFVEtn-4 .multicolumn-card.content-container {
    background: brown;
}
li#Slide-template--21110267019587__multicolumn_CFVEtn-5 .multicolumn-card.content-container {
    background: blue;
}
li#Slide-template--21110267019587__multicolumn_CFVEtn-6 .multicolumn-card.content-container {
    background: orange;
}

 

And Save. 

There is a number of the codes that youll know which multicolumn is that. 

 

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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.