Home › Forums › CSS › [SOLVED] Unordered List Styling › Re: [SOLVED] Unordered List Styling
August 7, 2009 at 12:59 am
#61961
Member
It should be as simple as adding a bit of padding below each list item, correct? Basically, you’ll just need to do some CSS styling to the list items. For example:
Code:
- long text here…
- long text here…
and CSS styling:
Code:
.paragraph_style li { padding-bottom: 16px; }
If you also need to indent the first line of each list item, you would use "text-indent" for that.