Here's the deal. I use a margin-bottom setting of 1em on my <ol> tags to keep a line of space between a list and the following paragraph. So it looks like this...
1. line of text.
2. line of text.
3. line of text.
next paragraph.
and not
1. line of text.
2. line of text.
3. line of text.
next paragraph.
Works great in my online output. However, in my printed documentation the <ol> tag settings don't seem to be imported, so there's no space after the last line of a list. I guess I could create a <li> style with the spacing included and use it on the last item in a list, but that seems like a clunky solution. Any ideas?
--gw