line height after a bulleted list
-
Hello – I would like to decrease the height of the line that follows bulleted lists, so that it matches the line spacing in the rest of my posts.
Thanks!The blog I need help with is: (visible only to logged in users)
-
Hi there, I see you have set a bottom margin of 0.8em on paragraphs. Ordered and unordered (bulleted) lists have a bottom margin of 1.5em. You can add ul to your paragraph CSS rule to have it the same as paragraphs like this
p, ul { line-height: 1.5; margin-bottom: 0.8em; }If you wish to also have the same bottom margin on ordered (numbered) lists, then add ol also like this
p, ul, ol { line-height: 1.5; margin-bottom: 0.8em; } -
-
- The topic ‘line height after a bulleted list’ is closed to new replies.