Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [SOLVED] Unordered List Styling Re: [SOLVED] Unordered List Styling

#61961

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.