Text disappeared in Multicolumn DAWN Theme

Topic summary

Issue: In a Shopify Dawn store, text in the Multicolumn section became invisible after unrelated banner code edits. Store URL was provided and password removed for access.

Actions taken:

  • Guidance to edit theme CSS (Admin → Online Store → Theme → Edit code), locate base.css/theme.css/styles.css, and add a rule to force content text color:
    .multicolumn-list.contains-content-container { color: black !important; }
    This restored description text.
  • Remaining problem: headings stayed white. Additional targeted rule suggested:
    .multicolumn-card__info .inline-richtext { color: black !important; }
    This addressed headings.
  • Final implementation by the store owner: added h3 { color: black; } in the Multicolumn section’s Custom CSS, which resolved the issue.

Outcome: Resolved. The Multicolumn descriptions and headings now display correctly.

Notes:

  • Central to the fix were CSS overrides applied either in the theme stylesheet or the section’s Custom CSS.
  • Screenshots were shared to illustrate results but are not required to reproduce the solution.
Summarized with AI on December 27. AI used: gpt-5.

Hello, the text in my multicolumn disappeared. I messed around with some code for my banners but didn’t touch any code related to the multicolumn. I triple checked and couldn’t find the issue. Any help on the matter would be greatly appreciated.

My website URL is https://bloomboxspa.com/

Thank you!

Hello @bloomboxspakit Please provide the Password of the store also.

I’ve removed the password entirely :+1:

Hi @bloomboxspakit ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

.multicolumn-list.contains-content-container {
   color: black !important;
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Thank you so much! Thank worked for the description but the heading is still white. Any idea on how to fix that as well?

Hi @bloomboxspakit , Pls insert this code to your file css:

.multicolumn-card__info .inline-richtext {
    color: black !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

I actually just pasted this in the Multicolumn Custom CSS section and it worked perfectly. Thank you again!

h3 {
color: black;
}

1 Like

Thank you!

1 Like