How to add more space between numbered lists?
-
Is there any HTML coding to do this? Here is an example of what I mean: http://loneplacebo.wordpress.com/2009/10/02/whats-on-your-iphone-ipod-touch-home-screen/
The blog I need help with is: (visible only to logged in users)
-
You can add padding below each ordered list item in the HTML tab as shown in this example:
<li style="padding-bottom: 15px;"> Text for ordered list item here.</li>You would have to all the above for each ” li ” item.
-
-
-
-
-
@panos, that sets all lines to that height so if you have three lines of text in say #1 in the ordered list then it puts that height between all of those lines as well.
I don’t know of any other way to put extra space between individual numbered “paragraphs” of the ordered or unordered list that to put the padding-bottom in each “li” opening tag.
-
-
@timethief: Thanks. (But…)
@thesacredpath: Oh right! Obviously I was thinking of short items only – should have checked loneplacebo’s post before speaking…
-
-
-
Okay I give up. Rather than paste in the code, I’ll just say that when I need extra space after list items, I add two line break tags after the closing list tag. For me, it’s easier to spot those when reviewing the code than it is to spot the style tags. (:
- The topic ‘How to add more space between numbered lists?’ is closed to new replies.