Hi, hheijnis.
Thanks for using ScrapeAZon.
In HTML5, the iframe “scrollbars” option is deprecated. The plugin doesn’t use it in anticipation of that option eventually disappearing from browser support. There are a couple of things you can do:
* Adjust the height by using the “height” parameter in the shortcode, so the scrollbars disappear.
* Issue the shortcode inside of your own custom iframe tag, like this:
<iframe src="[scrapeazon isbn="your-isbn-here" url="true"]"></iframe>
Setting url="true"
in the shortcode causes ScrapeAZon to return ONLY the iframe SRC link, not the full iframe code. That way you could do something similar to the following:
<iframe id="scrapeazon-iframe" class="scrapeazon-reviews" src="[scrapeazon isbn="your-isbn-here" url="true"]" scrollbars="no"></iframe>
If you wanted to continue using responsive mode and use the url=”true” parameter, you’d need something like this:
<div id="scrapeazon-wrapper" class="scrapeazon-responsive">
<iframe id="scrapeazon-iframe" class="scrapeazon-reviews" src="[scrapeazon isbn="your-isbn-here" url="true"]" scrollbars="no"></iframe>
</div>
Thanks again for using ScrapeAZon. Hope that helps.
James