How can I change the color of my homepage sections in the 'Dawn' theme?

Hi,

I am looking to change the colours of my multicoloumns on my homepage from grey to #A6DFEF .(see attached) I keep seeing videos which mentioning pasting the section ID into theme.scss, however i do not have that option on my assets? I am using the ‘dawn’ theme. Is anyone able to help?

My website is

https://wyld-womanli.myshopify.com/

My password is leilea

1 Like
.multicolumn-card {
    background: #A6DFEF !important;
}

@BROGEN2700
Add this code in the bottom of the section-multicolumn.css file**.**

thank you

Hi,

Thank you for your reply. I have added that but I am still seeing the grey background?

1 Like
.multicolumn:not(.background-none) .multicolumn-card {
    height: 100%;
    background: #A6DFEF !important;
}

@BROGEN2700
try this one.

Amazing thank you!

Do you know how I could also change the colour of the text to white?

1 Like

@BROGEN2700

yes, sure kindly link and accept our solution if helpful.

multicolumn-card__info h3 {
    color: white !important;
}

.multicolumn-card__info {
    padding: 2.5rem 2.5rem;
    color: white !important;
}

@BROGEN2700

try this.