• Priority: 0
  • Status: Closed
  • Theme: Alysum
  • Assigned To: Marek
  • Private: No
  • Open Date: 12.01.18, 15:56
  • Opened by: Ario
  • Closed by: Marek
  • Closed on: 12.01.18, 16:14
  • Reason: Closed
  • Comment: Glad to help!

Ticket #11409 - [URGENT] IFRAME not visible live stream

Hi Marek,

The IFRAME dissapears again. Can you please take a look again?

Its about this page: https://milanisapparel.com/content/12-Milan-Fashion-Week-Mens-Fall-Winter-2018

Comments

Marek 12 Jan 2018, 15:59

Try following CSS fix:

body .post_content iframe {height:400px !important;}
Ario 12 Jan 2018, 16:05

Did not work. (also deleted cache)

Marek 12 Jan 2018, 16:10

Ok, try following way to put your video

<p class="videoWrap">
<iframe src="https://www.youtube.com/embed/dLxvfO1ox-M?ecver=1" frameborder="0"></iframe>
</p>

and CSS:

.videoWrap { 
    position: relative; 
    height: 0; 
    overflow: hidden; 
    padding: 0 0 56.25% 0;  
}
.videoWrap iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    border:none;
    width:100% !important;
    height:100% !important;
}
Ario 12 Jan 2018, 16:14

Fixed thanks!