How to do decrease the space between Image and Text in a Section?

Topic summary

A user needed help reducing the spacing between an image and text in a Shopify section. After providing the product page URL and password, they received a CSS solution to add to their base.css file:

Solution provided:

  • Add custom CSS targeting .multicolumn-card__info
  • Set padding-top: 1rem !important;

Outcome:
The CSS modification successfully resolved the spacing issue. The discussion is now closed with the problem solved.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Hi,

Please add below CSS in base.css file

.multicolumn-card__info {
padding-top: 1rem !important;

}

1 Like