Html 重新加载后,谷歌翻译图标会反复出现在网页上

Html 重新加载后,谷歌翻译图标会反复出现在网页上,html,wordpress,highlight,google-translate,Html,Wordpress,Highlight,Google Translate,我面临着谷歌边缘浏览器翻译插件的奇怪行为(idk是否是浏览器问题,但我认为JS在突出显示一些文本或html代码时弄糟了) 实际上,问题是: 在我的Wordpress(flatsome主题)网站页面重新加载后,Google translate图标出现在元素的左侧,元素具有以下css以防止突出显示它: .mega-unselectable a, .header-main, .widget-title, .copyright-footer { -webkit-touch-callout:

我面临着谷歌边缘浏览器翻译插件的奇怪行为(idk是否是浏览器问题,但我认为JS在突出显示一些文本或html代码时弄糟了)

实际上,问题是: 在我的Wordpress(flatsome主题)网站页面重新加载后,Google translate图标出现在元素的左侧,元素具有以下css以防止突出显示它:

    .mega-unselectable a, .header-main, .widget-title, .copyright-footer {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
::-moz-selection { /* Code for Firefox */
  color:#424242;
  background: #f1f1f1;
}

::selection {
  color:#424242;
  background: #f1f1f1;
}
元素前面有一个GTranslate图标。 必须提到的是,当我点击图标时,什么都没有发生,就像没有文本要翻译一样。 问题图片:

问题是:如何找到突出显示文本的代码? 或者我如何发现问题