How to remove the iFrame scrollbars

Hi,

I wonder why the following iFrame has scrollbars:

<iframe width='600' height='200' frameborder='0' scrolling='no' src='https://docs.google.com/spreadsheet/pub?hl=en_US&key=0Aliqp0kGPjWsdERacHFDVzNzb1N3RHREZzYwVGQ5OVE&output=html&widget=true&chrome=false'></iframe>

Thanks in advance!
Mike

It looks like those scrollbars aren’t from your iframe, they are from Google Docs. By changing widget=true to widget=false in the Google Docs query string they will disappear.

New version:


<iframe width='600' height='200' frameborder='0' scrolling='no' src='https://docs.google.com/spreadsheet/pub?hl=en_US&key=0Aliqp0kGPjWsdERacHFDVzNzb1N3RHREZzYwVGQ5OVE&output=html&widget=false&chrome=false'></iframe>

Good question, from what you’ve posted there, it looks like there shouldn’t be any scrollbars. If you could post a link to the page where it’s happening, we’ll have a better chance of getting to the bottom of it.