google translate

How to disable google translate original text tooltips

Pinterest LinkedIn Tumblr

Just put CSS in your website

.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;
}

Write A Comment