In WordPress, you can add an unordered list by using the ul tag. For example:
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
This will create a list with bullet points, like this:
- Item 1
- Item 2
- Item 3
You can add spacing between the list items by using the margin property in your CSS. For example:
li {
margin: 10px 0;
}
This will add 10 pixels of space above and below each list item.
Alternatively, you can use the padding property to add space within the list item itself. For example:
li {
padding: 10px 0;
}
This will add 10 pixels of space within the top and bottom of each list item.
The CSS property you generally need to change is line-height. Looking at a couple of “bullets” (unordered lists) on a few of your blog posts, the following CSS should do the job:
.all_txt ul li {
line-height: 20px;
}Change the 20px value to whatever works best for you.
NB: Increasing the line heights may very slightly and increase the spacing between the list items (bullets) as well. But that should be insignificantly small. If you need to reduce the bullet spacing, add a negative top margin (eg margin-top: -10px; to the above).
Keep in mind that you will need to wrap the CSS in a style tag and place it in the head of your HTML document, or you can add it to your theme’s stylesheet.
