So I fixed my extra-padding issue. I had this CSS:
body {
font-family:Arial, Helvetica, sans-serif;
font-size:16px
}
After trying different fonts for <em>, I found that most stack changes that fixed the problem in Windows Chrome and Firefox caused the extra padding to then occur in Mac Safari. The only sans-serif that didn't was Trebuchet MS. That worked in all browsers, but it didn't really mix well with Arial/Helvetica. So I tried just changing the font-weight to Bold—that also fixed the problem, but called too much attention to the words. Anyway, that eventually led me to try adding a pixel to the font-size of <em> tags, and that fixed the problem. So, to make a long story short, I just did this:
em {
font-size:17px
}
It's not ideal, but it's not really noticeable. Hopefully that helps someone else.
Scott
On Thursday, May 24, 2012 11:16:58 AM UTC-7, Head United wrote: