OK Zuni, I found out where the problem is.
Firstly, some screenshots ... place one window over the other and alternate the views ... you'll see the text shrink.
Visited Link - No Hover
Visited Link - Hover
Remember that this appears with the Dark Night theme ... and probably because I cutomized the font to Tahoma. From what I see here, the stylesheet
a.ftalternatingbarlinksmall:visited has two font-family declarations: one for "Verdana, Arial, Helvetica", and another for "Tahoma". The problem is not with font size, but with font type, as the browser will render the Verdana instance, resulting in different fonts being displayed. Removing the first font-family instance, the page renders correctly. This way:
a.ftalternatingbarlinksmall:visited{
font-family: Verdana,Arial,Helvetica; font-size: 12px; font-weight: normal; color: yellow; font-family: Tahoma;}
should actually be:
a.ftalternatingbarlinksmall:visited{font-size: 12px; font-weight: normal; color: yellow; font-family: Tahoma;}
I don't know what implications these changes might do to FT ... and because of the obscurity of the bug, probably it's better to leave unchanged, since not many people will notice. I just wanted to alert you anyway ...
Kuk -
🙂
PS: Ohhh, and what do you think about the new ColdFusion MX server? I particularly loved the Query of Query idea ... saves a lot of queries from having to access the DB.