Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google translator top bar hide

I am using google translator for my website. I want to hide the top bar of google translator let me know how i can hide that one?

Please check my site link here http://www.rewords.com and let me know i to hide that bar?

Thanks

like image 797
user643390 Avatar asked Mar 04 '11 17:03

user643390


2 Answers

Done via CSS:

.goog-te-banner-frame.skiptranslate {display: none !important;} 
body { top: 0px !important; }
like image 121
Jacob Hodara Avatar answered Nov 14 '22 01:11

Jacob Hodara


Some changes in Jacob's answer. Try writing,

<style type="text/css">iframe.goog-te-banner-frame{ display: none !important;}</style>
<style type="text/css">body {position: static !important; top:0px !important;}</style>

This will solve the issue.

like image 34
vbjain Avatar answered Nov 14 '22 02:11

vbjain