Hello friends, how can I minimize the space between Titel and text
Topic summary
A user seeks to reduce the vertical spacing between a title and text block in their Shopify theme, as shown in an attached screenshot.
Solution Provided:
- Navigate to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS
- Add the following CSS code:
.image-with-text__text.rte.body {
margin-top: 0 !important;
}
A before-and-after screenshot demonstrates the reduced spacing after applying the CSS. The issue appears resolved with this custom styling approach.
Hi @NikosBat
o complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
.image-with-text__text.rte.body {
margin-top: 0 !important;
}
Here is the result:
I hope this helps
Best,
Daisy

