- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Change size of embedded google sheet
I am working with this code from File/Publish to Web:
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSnIV_dvrFZ1ZmuXNjEmNtBWV_K-fRyn82ixm9PJG4YdyCwcQmNf...>
It is a tiny window. in the past, this article was promoted was to give direction, but the end is not showing...http://smallbusiness.chron.com/embed-resize-google-document-50131.html
Please help with code adjustment or a different article to help me go from a tiny window to a larger, full-width screen version of the spreadsheet. Thanks-Karen
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Immediately before the closing tag of your embedded doc:
></iframe>
add something like this:
height= "500px" width= "800px"
These numbers are only examples. You'll need to play around with these to get the sizing that looks right on your website and doesn't cause the image to degrade if too large and /or cropping occurs. If you want to use the full width of your webpage you can try width= "100%" or some smaller variant.
Hope this helps, Gary