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.
You can add this code in Custom CSS of that rich text section.
.rich-text__text { margin-top: 0px; }
