voxconscientia
Member
Posted 3 years ago #
Hi there,
I've spent too much time looking at widgets.php & general-template.php, and my brain's getting a little loose. Does anyone know how to remove the line break between the month name and the parenthesized post count? I'm displaying the returned months as unordered list elements and just want to bring the article count to the same line as the month name. Ditto with Authors & Categories.
-Erin
voxconscientia
Member
Posted 3 years ago #
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!
I've had the same issue and was suspecting it might be something like that. :) Glad you fixed it.