html - Advertisement is flying down inside iframe - CSS mistake? -


i had been researching convert fixed width/height iframes of gaming portal responsive , found bunch of different suggestions people, out of made css addition targeted @ iframe class worked make responsive, when tested on ipad using safari browser ad appears in beginning of games starts flying down , therefore makes impossible game begin.

could please me correct problem? here more details:

inside article have iframe game embedded in following code:

<center> <div class="game-responsive-container" style="padding-bottom: 66.81%;">   <iframe src="gameurl" frameborder="0" scrolling="no"></iframe> </div> </center> 

fyi1: class "game-responsive-container" target in css (shown below). fyi2: padding-bottom part dedicated per page because each game have different height.

in css have following related question:

.game-responsive-container {   position: relative;   height: 0;   overflow: hidden; }  .game-responsive-container iframe {   position: absolute;   top:0;   left: 0;   width: 100%;   height: 100%; } 

so again can tell works on computer on safari browser creates problem visually see ad appear in center of iframe , fly down until disappears , consequently game not load anymore making impossible play.

from additional testing impression height , width being enlarged , ad naturally moving towards larger center giving flying visual. once did manage see background of game top left part of game screen made me think game has loaded on larger area in background.

here example url: http://dolygames.com/cube-ninja-play-free/ (note: there games different provider not have problem, did consider wrong code specific provider when had fixed iframe fixed width/height worked)

i hope information detailed enough , hope may able me fix problem can enjoy gaming portal. in advance help.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -