If you find that existing styles are removing the spacing, you can add custom CSS to restore it.
Follow these steps:
Go to Online Store > Themes > Edit Code
Find the Assets folder and open the file named theme.scss.liquid or similar (it might have a different name depending on your theme).
Add the following CSS at the bottom of the file:
.product__description p {
margin-bottom: 1.5em; /* Adjust the value as needed */
line-height: 1.5; /* Optional: adjust line height for better readability */
}
Test Javascript:
if you suspect JavaScript might be modifying styles after the initial load, check for any scripts that run after the page loads. Look in the theme.js or other relevant JS files for any code that could manipulate styles or remove spacing.
After making any changes, be sure to clear your browser’s cache or check in an incognito window to see if the changes have taken effect.
If I was able to help you, please don’t forget to Like and mark it as the Solution!