Change text color in multicolumn Sense

Hi,

I’d like to make all text in the blue box white. ATM with my code it only makes the middle part of the text in the blue box white. What is wrong in this code?

.multicolumn-list .multicolumn-card {
background: #95b4f0;
}
.multicolumn-list .multicolumn-card p {
color: #fdfbf7;
}

Hello @KiavusPetstore
Please provide me the url of your website.

Hello @KiavusPetstore

Try this

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.multicolumn-card.content-container, p, .inline-richtext { color: #fff !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

other wise please provide me your store URL and password if any please.
so i can check and provide you possible solution for your question.

.multicolumn-list .multicolumn-card {
color: #fdfbf7 !important;
}

Can you try it @KiavusPetstore or share with me url

Hi @KiavusPetstore

Now let’s try with the following code

.multicolumn-list .multicolumn-card {
background: #95b4f0;
}
.multicolumn-list .multicolumn-card * {
color: #fdfbf7;
}

If it’s helpful, please like and mark it as a solution, thank you

1 Like

You are a lifesaver, thanks!