Scroll inside popup

Hello friends
I come to request your help. I decided to add “tools” to my website and be able to use them through popup.

Each popup template is a tool and everything works fine until you use the tool and it looks like this.

Is there a way that I can scroll inside the popup and see all the information?

I appreciate your help.

I include the code of the tool, thanks.

<iframe width="100%" height="500" allowtransparency="true" frameborder="0" id="0a4d98" scrolling="no" src="**https://mywebsite.com/e**mbed.php?id=top-referrers&r=0a4d98&cookies=0"></iframe>
<script type="text/javascript">
  (function(id) {
    var eventMethod = (window.addEventListener ? "addEventListener" : "attachEvent"), lh = -1;
    window[eventMethod](eventMethod == "attachEvent" ? "onmessage" : "message", function(e) {
      if (e.data.indexOf(id + ':') != 0) return; var h = parseInt(e.data.substring(id.length + 1), 10);
      if (lh != h) document.getElementById(id).style.height = h + 'px'; lh = h;
    }, false);
  })("0a4d98");
</script>```

Try setting overflow-y or overflow to auto for the Popup or the outer most element in the Popup.

Thanks for answer Sridhar, exactly where I put “overflow”. In which part of the builder. I don’t know the code, so I didn’t know how to solve this.

thanks for your time.

Select the Section inside your Popup template, In the STYLE tab, LAYOUT, MISC, Overflow.

Thanks. Already did and doesn’t work. Already read this

auto like you recommended but doesn’t work.

also thank you for your time and help.

EDIT:
With “scroll” the bars now shows but doesn’t work. here a example

all good no need to scroll because the window is to small but when i send a search in the popup the scroll doesn’t work.

the information is cropped and even though the side scroll bar is shown, it does not perform the function to scroll and see all the content. Only what reaches to cover the window of the web.

I have the same issue… Instead of scrolling popup content, it scroll the main page in the background… Sooo annoying

1 Like

have you found any solution to this?

“overflow-y: scroll” is work for me, would it help too?