Multi-column - centre text alignment - DAWN THEME

Hello,

We want to make the text alignment centre in our multi-column but there is no option on DAWN theme.

Could someone help us with the code?

This is what it currently looks like on our product information page.

www.reggiebaby.com.au

Thank you all

Hey @ReggieBaby
Follow these steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above

1 Like

Hi, you can do that by following those steps below

Go to Sale channels > Online store > Edit code > Assets > open base.css file, add this code at the bottom and save file

.multicolumn-list { text-align: center !important; }
1 Like

Hello @ReggieBaby ,

You can try to follow these steps:

  • Go to Online Store → Theme → Actions → Edit code

  • Go to Assets folder → Open base.css → Add the following code in the bottom
multicolumn-list { text-align: center !important; }
  • Save and preview.

Hope this can help.

Ali Reviews team.

1 Like

@ReggieBaby
add below css into base.css file

@media screen and (min-width: 750px)
{
.background-none .multicolumn-list .multicolumn-card__info, .background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info {
    text-align: center !important;
}
}

1 Like

Hi @ReggieBaby ,

Glad to support you today.

You can check out my suggestion below to get your concern resolved:

  1. Go to Edit code on Online Store:

  1. add my code above the tag on Theme.liquid:

Hope you find my answer helpful!

Kind & Best regards,
GemPages Support Team.

1 Like