How to make wordpress theme iframe responsive
After some research, I came across this article and ended up with the solution below. <div style=”position: relative; padding-bottom: 56.25%; padding-top: 25px; height: 0;”> <iframe style=”position: absolute; top: 0; left: 0; width: 100%; height: 100%;” src=”http://slither.io/” width=”100%” height=”100%” frameborder=”0″ scrolling=”no” seamless=”seamless” allowfullscreen=”allowfullscreen”> </iframe> </div> What this code does is that it set the div’s width … Read more