Habpanel Limit Operation Area of Widget

i created a widget in habpanel that contains an ext. wetter widget.
it works basically well.
but if i press above the weather widget on the touchpanel (e.g. next to button light), then a link of the ext. widget is called and it changes to website.

grafik

<div class="section">
  <iframe
    src="https://www.meteoblue.com/de/wetter/widget/xxxxxxxxx"  
    frameborder="0" 
    scrolling="NO" 
    allowtransparency="true" 
    sandbox="allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox" 
    style="width: 460px;height: 410px;margin-top: -50px; margin-left: -5px"
    >
  </iframe>
</div>

i think the problem comes from shifting and restricting the display area.
can the operating area of a widget also be limited? How?

the problem is solved … i have delete two parameter of sandbox:

allow-popups allow-popups-to-escape-sandbox

after that change all works fine.