Never mind, peeps. A coding guru gave me the solution after quietly but
emphatically whispering to me in song:
"The answer my friend, is blowing in the wind... the answer is blowing in the wind." (Okay, I'm kiddin' about that part

) The solution was so simple I'm almost too embarrassed to reveal it but in the interest of sharing that which was revealed to me, here it is (drum roll please...)
The "#pagination li" declaration block should have included "display:inline". That alone fixed the problem (that I'm told was also affecting IE7) but it was also suggested that "list-style:none" should be moved to the "#pagination ul" block. Thus this:
Code: Select all
#pagination ul {
border:0;
margin:0;
padding:0;
font:0.7em/1.7 Verdana, Arial, Helvetica, sans-serif;
}
#pagination li {
border:0; margin:0; padding:0;
list-style:none;
}
became this:
Code: Select all
#pagination ul {
list-style:none;
border:0;
margin:0;
padding:0;
font:0.7em/1.7 Verdana, Arial, Helvetica, sans-serif;
}
#pagination li {
border:0; margin:0; padding:0;
display:inline;
}
and all was well with the world again.
