Hello, i was wondering about how to scale the size of page open in iframe. If i put the link manually it can be done like this :
#wrap { width: 1620px; height: 3500px; padding: 0; position:relative; left:-100px; top:0px; overflow: hidden; } #frame { width: 1620px; height: 3500px; position:relative; left:-65px; top:0px; } #frame { -ms-zoom: 0.7; -moz-transform: scale(0.7); -moz-transform-origin: 0px 0; -o-transform: scale(0.7); -o-transform-origin: 0 0; -webkit-transform: scale(0.7); -webkit-transform-origin: 0 0; }but since i want the page to open different dynamic page i have to link it from here :
$w.onReady( function ()
{
let item = $w( “#dynamicDataset” ).getCurrentItem().iFrameDynamic ;
//let siteURL = $w(‘#dynamicDataset’).getCurrentItem().siteURL;
$w( “#html1” ).src = item ;
});
And now, my problem is, i cant scale the page from , or maybe i could find the code. Anyone can help me? Thanks before!