Thanks, this sheds some light on it. The links are treated as "inline" instead of "inline-block", which makes them harder to target. The skin tries to spot if a link was clicked but inline rendering makes the link areas the tightest possible. With "inline-block" the link targets are rectangular with paddings added, therefore making the hotspot area larger. Add this CSS to Settings / Site / Custom code / CSS:
#main > .cont .projector .jcards .jcard .jcaption .comment a { display: inline-block; }
Please note, the links this way will occupy more space making the mobile layout much uglier, see attachment. This is why I don't want to "fix" this behavior.
On more thing; you are using convoluted and deprecated HTML code, which does not work, and complicate things even further - perhaps triggering this error.
<a title="" style="text-decoration: none;" href="index.html#img=028_AND08112.jpg"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Exmouth </font></font></a>
<img alt="" src="../../../img/Pfeil_rechts_small.png">
I'd use this:
<a href="index.html#img=028_AND08112.jpg">Exmouth</a> →
Edited by: Laza on 04-Nov-2019 08:17