Protection Error?

AndreaMarucci

Well-known member
I would like to put this in template ad_sidebar_bottom but when I load the page I get a protection error. Maybe for the iframe?

Any suggestion to put this there without having errors?

Code:
<div class="section">
    <div class="secondaryContent partenaire" id="partenaires">
        <h3>Meteo</h3>
          <div class="pairsJustified">
            <iframe id="wdgtmeteoframe" src="http://meteo.sky.it/widget/meteo/widget.html" width="100%" height="344px" scrolling="no" style="border: 0px" frameborder="0"/>
          </div>
    </div>
</div>
 
Try closing the iframe using a separate tag.

Code:
<div class="section">
    <div class="secondaryContent partenaire" id="partenaires">
        <h3>Meteo</h3>
          <div class="pairsJustified">
            <iframe id="wdgtmeteoframe" src="http://meteo.sky.it/widget/meteo/widget.html" width="100%" height="344px" scrolling="no" style="border: 0px" frameborder="0">
</iframe>
          </div>
    </div>
</div>
 
Top Bottom