How to Minimize space between 2 sections.

Topic summary

A user needed help reducing excessive spacing between two sections on their Shopify store, as shown in an attached screenshot.

Solution provided:

  • Navigate to Edit code in the Shopify theme editor
  • Locate the base.css file
  • Add the following CSS code at the end:
.image-with-text__content {
   padding: unset !important;
}

The solution successfully resolved the spacing issue. A before/after screenshot was provided demonstrating the reduced gap between sections.

Status: Resolved

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

Hello guys, how can I minimize the space between these 2 sections?

Hi NikosBat

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.image-with-text__content {
   padding: unset !important;
}

Result:

Best,
Liz

1 Like

Thanks LizHoang that has solved my problem.