Avatar of Richard Korts
Richard KortsFlag for United States of America

asked on 

YouTube Responsive Options

I have this code for a YouTube video, in a WordPress site.

<iframe src="//www.youtube.com/embed/Ql8_GcE9-sg?rel=0" allowfullscreen="allowfullscreen" width="450" height="253" frameborder="0"></iframe>

Open in new window


How do I make this responsive so it is properly sized for a small (phone sized) device?

Thanks
* ResponsiveWordPress* YouTube

Avatar of undefined
Last Comment
Richard Korts
Avatar of lenamtl
lenamtl
Flag of Canada image

Hi, you should use HTMl5 instead of iframe.

Here is the code I'm using, you can replace local urls by youtube url or vimeo url with their settings.

Always set a poster so if the device cannot display the video so the user will see at least an image.
Be aware that video may not be displayed in some phone browser or some feature may not work like automatic play.
Using 3 video format help for the browser compatibility .

<video controls preload="none" poster="poster.png"> 
   <source src="video1.mp4" type="video/mp4"> 
   <source src="video1.webm" type="video/webm"> 
  <source src="video1.ogv" type="video/ogv"> 
</video> 

Open in new window


CSS
video {
  width: 100%    !important;
  height: auto   !important;
}

Open in new window


Or if you are using Bootstrap or other CSS framework you can their media queries
to learn more about media queries: https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Avatar of Richard Korts
Richard Korts
Flag of United States of America image

ASKER

To lenamtl,

This is a WordPress site; I presume the original developer inserted a video; WordPress translated it into an iframe.

Not sure what will happen if use the video tag within the WordPress framework.
ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of Richard Korts
Richard Korts
Flag of United States of America image

ASKER

I also found this CSS in several places, to act as a wrapper for the iframe.

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
WordPress
WordPress

WordPress is a free and open-source content management system (CMS) based on PHP and MySQL for creating websites and blogs. Features include a plugin architecture, a template system and strong management, customization and search systems; through its dynamic presentation of content, webmasters have the flexibility to create websites easily.

11K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo