Topic summary
A user is experiencing unwanted white space between a rich text header and text on their product page.
Another community member provided a CSS solution:
- Navigate to the
base.cssfile - Add custom CSS code targeting the
.rich-text__textclass with amargin-top: 10px !importantproperty
This appears to be a styling issue that can be resolved through custom CSS modifications to adjust the spacing between these elements on the product page.
Hi @Simon159 , go to base.css and add the following code:
.rich-text__text.rte.scroll-trigger.animate--slide-in {
margin-top: 10px !important;
}
