Skip to main content

How to Fix Double Scrollbars on Your Wall of Love

Updated over 3 months ago

In most cases, when you embed your Wall of Love, the script will simply just work and the wall will resize automatically.

However, in rare cases, depending on your website setup, you may see double scrollbars on your site:

If you're encountering this issue, we recommend updating the script code as follows:

Replace this code in the script:

iFrameResize({checkOrigin: false, heightCalculationMethod: "taggedElement"}, '#XXXXXX');

With the following code:

setTimeout(function() {
iFrameResize({checkOrigin: false, heightCalculationMethod: "taggedElement"}, '#XXXXX');
}, 200);

Did this answer your question?