Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Travis

    (@tjtaylor)

    Hello,

    You can set title_tag=false and this will remove the mouseover text.

    Please let me know if this doesn’t work for you.

    Thread Starter yolandal

    (@yolandal)

    Hi Travis,

    Unfortunately that didn’t work. I placed it in the [] code and tried the a href code.
    Actually I want to set my own text there. I remember there used to be an option for that, if I remember it correctly, something with .tooltip ?

    Plugin Author Travis

    (@tjtaylor)

    Hello,

    Please add the following CSS:

    span[class*="simple-icon"] svg {
        pointer-events: none;
    }

    Then you can add a title attribute to your links and the text you want to use.

    Example:

    <a title="My Custom Title">[simple_icon]</a>

    Thread Starter yolandal

    (@yolandal)

    Thank you, that worked!

    Now I still have this code in my CSS. are Tooltip arrows still available?

    /*tooltip icons*/
    .tooltip {display: inline-block;
      border-bottom: 0px;}
    
    /* Tooltip arrow */
    .tooltip .tooltiptext::after {  content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;}
    .tooltip:hover .tooltiptext {  visibility: visible;
      opacity: 1;}
    Plugin Author Travis

    (@tjtaylor)

    I’m not familiar with that code or tooltip arrows. This is not apart of our plugin.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Mouse over text’ is closed to new replies.