Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1186447

    ashleyswanson427
    Participant

    Could you please inform me how to disable tooltips on mobile (primarily phones). I have a button that is set to prompt either SMS: OR TEL: and am using a tooltip on desktop to notify the user of the number but I’d rather bypass the tooltip on mobile/phones and enable the action (SMS: or TEL) to take place without having to click on the tooltip..make sense?

    URL: http://irish-realty.com/

    Thanks!

    #1186563

    Rupok
    Member

    Hi there,

    Thanks for writing in! SMS and TEL link is working for mobile fine. If you need to remove the tooltip; you can add this under Custom > CSS in the Customizer.

    @media only screen and (max-width: 979px) {
    .tooltip {
      display: none!important;
    }
    }

    Hope this helps.