It looks like you're new here. If you want to get involved, click one of these buttons!
How can I stop tooktip from showing? I guess it has to do with css but can't figure it out.
Remove the title attribute from the link in the plugin . A tooltip acts on title="the stuff that will show as tooltip when hovering the image link." It is not CSS
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
You need to remove the title attribute from
$newTitleAnchor = '<a class="IndexImage" href="' . $Sender->EventArguments['Discussion']->Url . '">' . Img($ImageSrc, array('title' => $sline, 'class' => "IndexImage")) . '</a>'; echo "$newTitleAnchor"; To this: $newTitleAnchor = '<a class="IndexImage" href="' . $Sender->EventArguments['Discussion']->Url . '">' . Img($ImageSrc, array('class' => "IndexImage")) . '</a>'; echo "$newTitleAnchor";
@vrijvlinder - thanks.
Comments
Remove the title attribute from the link in the plugin . A tooltip acts on title="the stuff that will show as tooltip when hovering the image link." It is not CSS
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
You need to remove the title attribute from
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
@vrijvlinder - thanks.