hey! We are needing to edit our product descriptions on our product page. Currently All the description text margins are not showing on our product page making the text look squished together. we have added a photo for example. if you could help that would be much appreciated.
Our website : munnafashion .com
By “text margins” do you mean the space between each line, the line-height
If so try the following CSS in the custom CSS theme feature (either for the theme for a section)
https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
.product__description.rte {
--description-line-height: 1.3;
line-height: calc(1 + var(--description-line-height) / var(--font-body-scale));
}
Adjust the value of –description-line-height to taste, probably between 1.1 and 1.8 .