Multicolumns color change

hi, I want to change the background colors if each of these multi-columns can someone help me?

What’s your store url ?

https://4b1e5b-36.myshopify.com/?_ab=0&_fd=0&_sc=1

niecum

Go to your online store → customize → settings → custom css and paste this code there

.multicolumn-card.content-container {
    background-color: #ffd0d0 !important;
}

Hi @mehwish-ali

Do you mean like this?

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--21371116880217__multicolumn_MeXbyH-1 .multicolumn-card {
    background: aqua;
}
li#Slide-template--21371116880217__multicolumn_MeXbyH-2 .multicolumn-card {
    background: chartreuse;
}
li#Slide-template--21371116880217__multicolumn_MeXbyH-3 .multicolumn-card {
    background: wheat;
}

And Save.

Note: Please be careful choosing the color it may contract the text color.

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