I found a similar topic, to this, but I can\'t find the specific CSS to change in Wordpress. If you go to my homepage Or blog
I want to change the spacing w
Between paragraphs you should set a margin for that element. Between lines within the paragraph you can use line-height. For example:
margin
line-height
p { line-height: 32px; /* within paragraph */ margin-bottom: 30px; /* between paragraphs */ }