How to disable google translate original text tooltips

前端 未结 5 426
南旧
南旧 2021-02-01 22:14

I have used google translate as a language converter in my site but it displays annoying tool tips called \'Original text\'. How do I disable this and any other better ideas/too

5条回答
  •  野的像风
    2021-02-01 22:43

    Just add this CSS to the top of your CSS files:

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

    I wasted 8 hours figuring this out, but now after those 3 lines of CSS it looks great :-) You can see this in action here: SEOgenie - Automated SEO

提交回复
热议问题