Archived topic
Spaces for numbers and bullet points?
5 replies · Started by Rocky on September 13, 2018
Can I get a css code to make my bullet points and numbers bullets to have this spacing...
https://www.screencast.com/t/AQagvuoUVMw
I used this code before .site-content ul, .site-content ol {
font-family: "Sentinel SSm A", "Sentinel SSm B";
font-style: normal;
font-weight: 300;
font-size: 19px;
line-height: 2em;
}
But it created to much space in between the lines. Like when a bullet point ended up being more than one line of text, the spaces between the text was TOO big.
Hi there,
What exactly do you mean by "this" spacing?
I'm not seeing a list in the page you linked.
Let me know if I'm missing something :)
https://www.screencast.com/t/C2HsxZr5paf
How can I get a space in between these?
Try this:
.site-content li {
margin-bottom: 1em;
}
Great thanks so much!
No problem :)