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 within and between paragraphs. Not sure which element I need to modify in my CSS.
Found a line-height
property for .body
, but that doesn't seem to do what I want.
Remove the Default Space Between Paragraphs:Set your cursor to the location of the paragraph spacing. Click on the Line and Paragraph Spacing icon in the Home Ribbon. Select "Remove Extra Space" to remove the extra space. This has to be done in each document unless you adjust your default settings.
In the field of typography, which is the art of printed text, letter spacing is called "kerning".
Between paragraphs you should set a margin
for that element. Between lines within the paragraph you can use line-height
. For example:
p {
line-height: 32px; /* within paragraph */
margin-bottom: 30px; /* between paragraphs */
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With