Increase the spacing between list items
-
My bulleted lists and numbered list items are too close together.
Is there a simple way to increase the distance between the items? I have the customization upgrade.
The following worked great for the lists (added this to my CSS), but it messed up my nav-bar:
li { margin-top: 1em; }Any suggestions?
The blog I need help with is: (visible only to logged in users)
-
What you need to do is to create a more specific selector that will target content only and not mess with other list elements in the design. Give this a try.
#content li { margin-top: 1em; }
- The topic ‘Increase the spacing between list items’ is closed to new replies.