Site logo

Archived topic

spacing in between ordered list

5 replies · Started by Ryan on May 15, 2018

Viewing posts 1–6 of 6

Hi guys, is there any way to have custom spacing in between ordered list?

1. order list 1
2. order list 2

The spacing in between 1 and 2 above without changing every other spacing on the body text.

Thanks

Hi Ryan, you can just target the li tag and give that some style. How is the list being added?

I just use the list option in wordpress content writer area.

Not sure how to give it some style, do u have example? So we can't manipulate it directly using some feature in GP?

Hi Ryan,

you can target the list using the li tag with CSS like so - this will affect all ordered lists on the site. The property their will increase the line-height to that of the font so you can tweak accordingly

ol li {
	line-height: 2em;
}

where do I change the CSS ?

This archived topic is closed to new replies.