Issue with additional line break in list in blog

I’m having issues with both bulleted and numerical lists in blog posts appearing with an extra line break following the bullet or number.

website: https://livewithjuj.com/blogs/blog/the-complete-guide-to-bitters-what-they-are-how-to-use-them

theme: sense

Thank you for help in advance!

Hello @juj1 :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code the bottom

li p {
    display: inline;
}

The result

Hope that helps!

Thank you so much! It works. :slightly_smiling_face:

Curious if there’s a way to have an indent on the following lines so that the text aligns with the indent following the bullet or number?

You can add this code

li {
    list-style-position: outside;
}

The result