Fixed it! Sorry y’all. The problem was CSS. I had the following line in my template’s style.css:
.right ul ul li a { display: block; margin: 0 0 0 -10px; padding: 2px 0px 0 10px; }
Replaced it with:
.right ul ul li a { display: inline; margin: 0 0 0 -10px; padding: 2px 0px 0 10px; }
Et voila!