Product Page

Topic summary

A merchant requested help removing spacing between text and images on their product page at tudoconexao.com.

Community Response:

  • One user cautioned against removing whitespace, arguing it makes sites appear cramped and visually noisy, especially when the design is already busy
  • Another provided CSS code to remove margins from headings (h2, h3) and paragraphs within product descriptions, noting this would apply globally unless customized per product

Resolution:
The issue was successfully resolved. The merchant confirmed the CSS solution worked perfectly, and a follow-up check verified the spacing had been properly removed from the product page.

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

Hello, :cowboy_hat_face:

I have a problem with the spacing between the text and the image

How do I remove these spaces in the indicated places?

My store: tudoconexao.com

@Dawenn just search the forums: product description spacing + themename

But really this is how merchants slowly ruin the design of a site.

Don’t wear the designers hat for every little thing.

Whitespace is a customers friend.

That site is already really visually noisy removing padding for headings is a good way to make a site seem more cramped , visually noisy and trashy.

Don’t.

Hi @Dawenn you can add below code to theme.css at bottom but it will remove for all elements, if you want to customize for each product/element then it will to be done in product description editor

.product-block-list__item .card__section .rte h2{
margin-top:0;
margin-bottom:0;
}

.product-block-list__item .card__section .rte h3{
margin-top:0;
margin-bottom:0;
}

.product-block-list__item .card__section .rte p{
margin-top:0;
margin-bottom:0;
}
1 Like

@Dawenn After my checking, it seems like you have already removed the spaces properly. Congratulations!

If you need further support still, feel free to share more details here. Thanks!

1 Like

Thank you very much, it worked perfectly! :cowboy_hat_face: