Topic summary
A user needed to reduce the vertical spacing between bullet points on their Shopify product page (specifically on the Ashwagandha and Black Pepper Capsules page).
Solution provided:
- Add custom CSS to the theme.liquid file
- Insert the code above the closing
</body>tag - Target the
li.icon-with-text__itemclass withmargin-bottom: 5px !important;
Resolution: The CSS solution successfully resolved the spacing issue. The discussion is closed with the problem solved.
Hey @cvv
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Sure the store URL is exivonutrition.com, pw is yooloy7687
The problem is located on the Ashwagandha and Black Pepper Capsules product page.
Hey @cvv
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
li.icon-with-text__item {
margin-bottom: 5px !important;
}
</style>
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Thank you very much.
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

