• Home
  • Save code
  • Refresh
  • theme1 theme2 dark3
  • Embed
  • DMCA

Disable google translate original text tooltips


You may like these posts :

    2 Comments

    1. Add this CSS code in your html file.
      <style>
      .goog-tooltip {
          display: none !important;
      }
      .goog-tooltip:hover{
          display: none !important;
      }
      .goog-text-highlight {
          background-color: transparent !important;
          border: none !important;
          box-shadow: none !important;
      }
      </style>
    2. To hide the "Google translate bar", use the following css code. It may work.
      <style>
      body > .skiptranslate {
          display: none;
      }
      </style>