How can I adjust the column gap in a multicolumn section?

Topic summary

A user sought help narrowing the column gap in a multicolumn section on their Shopify store’s home page using the Dawn theme. They provided screenshots highlighting the excessive spacing between columns.

Solution provided:

  • Navigate to Online Store → Themes → Customize
  • Select the Multicolumn section
  • Add custom CSS code to the “Custom CSS” field

CSS code:
The solution involves targeting .multicolumn-card__image-wrapper and .multicolumn-card__info classes, setting their margins and padding to 0px with !important flags to override default spacing.

Outcome:
The original poster confirmed the solution worked perfectly, marking the issue as resolved.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

Hi!

[Multicolumn section on home page / Dawn theme ]

Could someone please help me to find a way to narrow the gap in the column as noted in yellow highlight in the screengrab. So that the image and the title below it are in line with the main menu.

Is it the image wrapper that needs adjusting?

Thanks in advance!

Another image to help you understand:

@cdgerard

Please follow below steps to adjust the space in multicolumn. Let me know whether it is helpful for you.

  1. From admin, go to “Online Store” → “Themes” → “Customize”.
  2. Click “Multicolumn” section.

  1. Paste the below code in “Custom CSS” field as shown in the below screenshot.
.multicolumn-card__image-wrapper {
    margin: 0px !important;
}
.multicolumn-card__info {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

Now, it will be shown like below image,

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

2 Likes

Works perfect, thanks a lot!