Woooohoooo! Success!
In mytemplate\stylesheet.css, I had:
a img{
border: none;
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #003366;
line-height:10px;
letter-spacing:.1em;
text-decoration: none;
display: block;
padding:8px 6px 10px 26px;
background: url("mm_arrow.gif") 14px 45% no-repeat;
}
I changed it to:
a img{
border: none;
font: 11px Verdana, Arial, Helvetica, sans-serif;
color: #003366;
line-height:10px;
letter-spacing:.1em;
text-decoration: none;
display: inline;
padding:8px 6px 10px 26px;
background: url("mm_arrow.gif") 14px 45% no-repeat;
}
The only difference is "display: block" was changed to "display: inline" - that fixed it!
Thanks for your help!



