Thank you for such a fast reply. I will follow your advice 🙂
Hi Herman,
Thanks for looking.
For whatever reason, the UL tag causes the bullets in the list to disappear.
<UL>
<LI>first</LI>
<LI>second</LI>
<LI>third</LI>
</UL>
will display as:
first
second
third
But
<LI>first</LI>
<LI>second</LI>
<LI>third</LI>
will display expectedly as:
• first
• second
• third
My fix was to stop trying to use the UL tag at all, and only use the LI tags.
Then fix the hanging indents with CSS
Thanks again!
Bill