How do i decrease the space between the rich text title and description?

Topic summary

A user seeks to reduce spacing between a rich text title and description on their product page.

A solution is provided using custom CSS:

  • Add the following code to the Custom CSS section of the rich text element:
.rich-text__text {
  margin-top: 0px;
}

This CSS rule removes the top margin from the rich text element, eliminating the unwanted space. The discussion appears resolved with this straightforward styling fix.

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

https://charmente.com/products/v-back-flared-jumpsuit

You can add this code in Custom CSS of that rich text section.

.rich-text__text { margin-top: 0px; }