tepples wrote:
Could not reproduce. It may depend on the monitor size and fonts installed on a particular device.
You've overlooked the fact that you have a "Moderator Control Panel" row/line that shifts the vertical offset of everything down further than those who don't.
The "problem" is that the links are slightly overlayed atop one another. I honestly don't see how this at all unique to the nesdev forums; any link you click on the web is essentially subject to potentially causing unwanted behaviour due to a double-click (either by the user, by mouse button switches that are wearing down, or by badly-implemented button handling in the UI/OS (Windows is notorious for this, ex. double-clicking a filename in a File/Open dialog, where the application is coded so that it ends up passing the 2nd button click down into whatever app/window is underneath it. Winamp has this problem, and I know in the past foobar2k has too)).
That said, I do find the "Subscribe forum" and "Mark topics read" row/line sorta out of place (visually), but I really don't know of any place to put it that would be more convenient. Not sure if the phpBB themes/layouts let you change this, but maybe instead of:
Code:
<tr class="nav">
<td valign="middle"> <a href="./viewforum.php?uid=3&f=2&watch=forum&start=0&hash=ff1544bd">Subscribe forum</a></td>
<td align="right" valign="middle"><a href="./viewforum.php?hash=ecc97b91&f=2&mark=topics">Mark topics read</a> </td>
</tr>
Use the "Foo | Bar | Blat" method, all right-aligned, e.g.:
Code:
<tr class="nav">
<td align="right" valign="middle">
<a href="./viewforum.php?uid=3&f=2&watch=forum&start=0&hash=ff1544bd">Subscribe forum</a> |
<a href="./viewforum.php?hash=ecc97b91&f=2&mark=topics">Mark topics read</a>
</td>
</tr>
Just my $0.02.