Google Translate Tools: In IE two scroll bars appears
http://translate.google.com/translate_tools
Anyone knows the fix or option inside tool itself, to remove second scroll bar on the right and bottom?
It's only happening in IE.
Thanks ;)
<script>
function googleTranslateEleme开发者_运维百科ntInit() {
new google.translate.TranslateElement({
pageLanguage: 'lv',
gaTrack: true,
autoDisplay: false,
gaId: 'UA-11173176-2',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}
</script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
Surely it's your web page that's causing the scrollbars(with a CSS class of overflow:scroll) rather than the tool which appears to put an fairly innocuous drop-down wherever you ask it to
I found this solution:
html {height: 97% !important;}
精彩评论