Problem solved via CSS for responsive pages.
put iframe in div called embed.box.
Hope this helps others.
<!-- iframe css -->
<style>
.embed-box {
position: relative;
padding-bottom: 80%; /* ratio adjust for iframe height */
padding-top: 30px;
height: auto;
overflow: hidden;
}
.embed-box iframe,
.embed-box object,
.embed-box embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<!-- end iframe css -->