Is there a simple way to reduce the spacing or padding between individual items in a list (li)
According to firebug, list items have the following css applied to them:
.entry-content li {
margin-left: 1em;
padding: 3px 0;
}
Just change the 3px in the custom css area. If you only want to change it for a list on particular post/page install a plug-in like css plus, which lets you do just that.
Hi ggorney,
As mentioned above you can Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.entry-content li {
padding: 3px 0;
}
The 3px is the space above and below each item.
Regards,
Devin