juj1
1
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 
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!
juj1
3
Thank you so much! It works. 
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