Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How to stop tooltip from showing.

How can I stop tooktip from showing?
I guess it has to do with css but can't figure it out.

Comments

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    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

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    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";
    
  • Options
    ProsperProsper ✭✭

    @vrijvlinder - thanks.

Sign In or Register to comment.