Oxygen theme – changing format to bullet lists
-
I would like to change the space before and after the bullet list.
In fact, as you can see in
http://ricettedelcuore.com/2013/03/01/polpo-con-patate/
Thre is to much space BEFORE and AFTER the bullet list.What should i change?
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Try adjusting the line height for list elements. Here is an example you can add to your Appearance → Custom Design → CSS editor:
ul li, ol li { line-height: 1.2em; } -
This changes the line height of each list element. Instead i would like to reduce the line hight before and after the list elements.
If you look now, there is a huge space, but i have no blank lines in my html.Thanks.
-
The space below each list is coming from a bottom margin set on the list. You can use this to reduce it to one line (or set it to zero if you’d like):
ul { margin-bottom: 1em; }The space above each list is coming from a large bottom margin for the previous paragraph. The following CSS will reduce it (note that this will affect any HTML on the site using the “p” tag that doesn’t have another, more specific CSS rule affecting it):
p { margin-bottom: 1em; } -
- The topic ‘Oxygen theme – changing format to bullet lists’ is closed to new replies.