如何从谷歌翻译api中删除或隐藏谷歌图标?

时间:2012-12-04 05:47:08

标签: php html css api google-translate

我正在使用这行代码:

    <div id="google_translate_element"></div>
<script>
   function googleTranslateElementInit() {
      var translator = new google.translate.TranslateElement({
      pageLanguage: 'en',
      autoDisplay: false,
      multilanguagePage: false,
      layout: google.translate.TranslateElement.InlineLayout.SIMPLE
   }, 'google_translate_element');
}
</script>
<script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

这是输出,我想删除图标,怎么可能删除它?或隐藏

enter image description here

2 个答案:

答案 0 :(得分:6)

用于此

.goog-te-gadget-icon{
background:none !important;
}

Live Demo

答案 1 :(得分:3)

这比rohit的回答要好得多

.goog-te-gadget-icon{
  display:none;
}