331A96E0-3037-43FC-8D93-543B900B11C9

😍 Loving this theme? Download

Please enter at least 3 characters.

Make Embedded Videos Responsive in Blogger - Add Elegant Frames

Make your Embedded YouTube or Vimeo Videos Fully Responsive and Display Embedded Videos Inside Elegant Frames.
Make Embedded Videos Responsive in Blogger - Add Elegant Frames
Make Embedded Videos Responsive in Blogger - Add Elegant Frames
Videos are used widely along with text content in blog posts and today's article is all about how to make those embedded videos responsive plus display them inside elegant frames of your choice.

Making videos responsive is the easy task to accomplish but along with that, displaying those videos inside beautiful frames was little tedious for me.

I am going to share two different frames where first one is a image frame of blank MacBook so it appears as if video is playing inside it.

Second frame is what I have designed with pure CSS and added some cool shadows effect in the bottom using pseudo elements. I hope you'll like it.

So what will you get in this post?
1) Making Embedded Videos Responsive without adding any frame.
2) Display Video Inside Responsive Frame Made of Pure CSS.
3) Display Video Inside Responsive Image Frame of a Blank MacBook.

So choice is yours, they all are responsive. :)

(Note:- You don't have permission to copy and share my code on your blog)

1) Make Embedded YouTube Videos or Vimeo Videos Responsive

When you get the code to Embed your video from YouTube or any other video hosting site, your code will contain a fixed height and width properties. So when someone visits your site from small resolution devices like as mobile or a tablet, then your embedded video will not re-size itself according to the screen size.

It will always contain its height and width to the original values despite the screen size. So it will either make a scrolling bar on small screen sizes or else it will hide the video part which is overflowing (If overflow: hidden; property is used for the content wrapper). You can not make them responsive like the way you can do with images.

If the scrolling bar is appearing then that particular page will also show an error in your webmaster tools account if you will check it for responsive design (Bad for SEO?).

I wrote that all just because I wanted to to tell you about how important is it to make your embedded videos responsive.

So how to do it?

It is simple enough to do with the help of CSS. So follow the steps given below and be responsive. :D

CSS Part

<style> .video_outer_wrap {
         width: 100%;
         max-width: 560px;
         margin: 15px auto;
     }
     
     .video_wrap {
         position: relative;
         padding-bottom: 56%;
         padding-top: 0px;
         height: 0;
         background-color: #000 !important;
     }
     
     .video_wrap iframe,
     .video_wrap object,
     .video_wrap embed {
         position: absolute;
         top: 0;
         width: 100%;
         height: 100%;
     }
     
     </style>

HTML Part


<div class="video_outer_wrap">
    <div class="video_wrap bottomshadows">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/LxuVerR2lFU" frameborder="0" allowfullscreen></iframe>
    </div>
</div>


How to use it?

CSS:- Copy the above CSS Part first then switch to HTML Mode of your blogger post editor and paste the the whole CSS code as it is  (Will work for WordPress too).

(Note: You can also paste the CSS code inside your blogger template skin so that you don't have to paste the CSS code every time in any of your blogger post. If you want to paste the code inside your template then copy the CSS code without the <style> tag and paste it just before ]]></b:skin> and save your template.

HTML:- Copy the HTML code and Paste inside your post editor after switching to HTML mode. You have to paste the HTML where you want your video to be appeared in  your content. Now for adding your video, just replace the code highlighted in yellow color with the embed code you got from your YouTube or Vimeo video.

(Note:- To get the embed code for your video on YouTube, just right click on the video player and select Get embed code. You will get your code in the middle of your video screen so copy it from there.)

If you followed all the steps correctly then you will have your video which is fully responsive. You can check it live by re-sizing your browser window easily.

Now I am going to share those two other ways along with live demo for adding cool frames and the process of using the code will be same as explained above so I am not going to re-write it again (except few changes).

2) Add A Beautiful Frame to Embedded Videos Using Pure CSS

I love this one because it is made with pure CSS and loads as fast as you know. :) It has got really cool design and shadows effect in the bottom.

I have also disabled the Video title Info which appears on the top of it and the related videos which appear in the end of video.

Watch the live demo given below.



CSS Part for it

<style> .tbn_css_frame_wrap {
         width: 100%;
         max-width: 560px;
         margin: 30px auto;
     }
     
     .tbn_css_frame_wrap_inner {
         position: relative;
         padding-bottom: 53%;
         height: 0;
         background-color: #000 !important;
         border: 15px solid #CACACA;
     }
     
     .tbn_css_frame_wrap_inner iframe,
     .tbn_css_frame_wrap_inner object,
     .tbn_css_frame_wrap_inner embed {
         position: absolute;
         top: 0;
         width: 100%;
         height: 100%;
     }
     
     .bottomshadows {
         position: relative;
     }
     
     .bottomshadows:before,
     .bottomshadows:after {
         z-index: -1;
         position: absolute;
         content: "";
         bottom: 0px;
         left: 10px;
         width: 50%;
         top: 80%;
         max-width: 300px;
         background: #777;
         -webkit-box-shadow: 0 15px 10px #777;
         -moz-box-shadow: 0 15px 10px #777;
         box-shadow: 0 15px 10px #777;
         -webkit-transform: rotate(-4deg);
         -moz-transform: rotate(-4deg);
         -o-transform: rotate(-4deg);
         -ms-transform: rotate(-4deg);
         transform: rotate(-4deg);
     }
     
     .bottomshadows:after {
         -webkit-transform: rotate(4deg);
         -moz-transform: rotate(4deg);
         -o-transform: rotate(4deg);
         -ms-transform: rotate(4deg);
         transform: rotate(4deg);
         right: 10px;
         left: auto;
     }
     
     @media all and (max-width: 400px) {
         .tbn_css_frame_wrap_inner {
             border: 7px solid #CACACA !important;
         }
         .bottomshadows:before,
         .bottomshadows:after {
             bottom: 9px !important;
         }
     }
     
     </style>

HTML Part for it

<div class="tbn_css_frame_wrap">
    <div class="tbn_css_frame_wrap_inner bottomshadows">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/LxuVerR2lFU?rel=0&theme=light&hd=1&showinfo=0" frameborder="0" allowfullscreen></iframe>
    </div>
</div>

Editing Step:- Please take note that this time you need not to paste your embedding code from YouTube as it is so instead just replace the Video id which is highlighted in the yellow color above. You can easily get this id from the address bar of your browser. See the example:

https://www.youtube.com/watch?v=LxuVerR2lFU
This is the web address of my intro video on YouTube I have uploaded so I have highlighted the unique video id in the yellow color. Copy it in the same way for your video and replace in the above HTML. Ask me in comments if you did not get it.

For Vimeo videos, just replace the whole code starting with <iframe> code.

Common Problem - Shadows are not appearing as shown in the live demo? Just add this little CSS code to your template skin or inside your blog post with along with above CSS code given below:

.post-body {
    position: relative;
    z-index: 1;
 }

So did it work for you? Let me know if it worked or not. I will definitely help you. So moving on to the image frame.

3) Displaying Embedded Video Inside a Responsive Image Frame

This is the frame of a blank MacBook. I used the border-image:property to display the image frame instead of adding the image frame with background-image: property.

This is all because I wanted to make it fully responsive. When I used the image with background-image: property then I could not make it fully responsive.
Video appeared to be overlapping the frame between different screen resolutions and I did not like it at all.
So I decided to go with border-image: property instead which makes it neat and clean. You can use your any other image but you need to adjust the border width and border image values accordingly.

(Note:-  No Browser support for IE10 and below, works well with others browsers, even with old versions with browser specific prefix. I just hate IE)

See the live demo given below.



CSS Part

<style> .tb_outer_wrap {
         width: 100%;
         max-width: 650px;
         margin: 15px auto;
     }
     
     .tb_video_wrap_macbook {
         position: relative;
         padding-bottom: 43%;
         padding-top: 0;
         height: 0;
         overflow: hidden;
         -webkit-border-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb1-jJ3r6uDVVzflMDTvOhOnduXDHFTcZbLwXz-CxmT8DTsWjnufL0PVbmr1WvoXaiMIGanEySjrRq2OPkCGGTLmd6yqF3Q1XY-vbINNGmpKQddeGafdYIs-k7Ev4-fd_x25M3KdHaAI4/s1600/macbook+laptop+frame.png') 50 233 112 228 stretch stretch;
         -moz-border-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb1-jJ3r6uDVVzflMDTvOhOnduXDHFTcZbLwXz-CxmT8DTsWjnufL0PVbmr1WvoXaiMIGanEySjrRq2OPkCGGTLmd6yqF3Q1XY-vbINNGmpKQddeGafdYIs-k7Ev4-fd_x25M3KdHaAI4/s1600/macbook+laptop+frame.png') 50 233 112 228 stretch stretch;
         -o-border-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb1-jJ3r6uDVVzflMDTvOhOnduXDHFTcZbLwXz-CxmT8DTsWjnufL0PVbmr1WvoXaiMIGanEySjrRq2OPkCGGTLmd6yqF3Q1XY-vbINNGmpKQddeGafdYIs-k7Ev4-fd_x25M3KdHaAI4/s1600/macbook+laptop+frame.png') 50 233 112 228 stretch stretch;
         border-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb1-jJ3r6uDVVzflMDTvOhOnduXDHFTcZbLwXz-CxmT8DTsWjnufL0PVbmr1WvoXaiMIGanEySjrRq2OPkCGGTLmd6yqF3Q1XY-vbINNGmpKQddeGafdYIs-k7Ev4-fd_x25M3KdHaAI4/s1600/macbook+laptop+frame.png') 50 233 112 228 stretch stretch;
         border-color: rgba(0, 0, 0, 0);
         border-width: 27px 76px 55px 76px;
         border-style: inset;
     }
     
     .tb_video_wrap_macbook iframe,
     .tb_video_wrap_macbook object,
     .tb_video_wrap_macbook embed {
         position: absolute;
         top: 0;
         width: 100%;
         height: 100%;
         background-color: #ddd;
     }
     
     @media (max-width: 500px) {
         .tb_video_wrap_macbook {
             border-width: 20px 62px 40px 62px;
         }
         @media all and (max-width: 400px) {
             .tb_video_wrap_macbook {
                 border: none !important;
             }
         }
         </style>

HTML Part

<div class="tb_outer_wrap">
    <div class="tb_video_wrap_macbook">
        <iframe width="560" height="315" src="https://www.youtube.com/embed/LxuVerR2lFU?rel=0&amp;theme=dark&amp;controls=1&amp;showinfo=0&amp;autohide=0" frameborder="0" allowfullscreen=""></iframe>
    </div>
</div>
Editing Step:-
Replace the highlighted part with your video ID for YouTube and for Vimeo videos, just replace the full <iframe> code.

So this is it for now and I hope you guys like it. Please let me know your feedback via comments whether your liked it or not.

Recommended:- How to Create Landing Pages or Squeeze Pages on Blogger/Blogspot

If you're facing any kind of problem or I could not make things clear then please let me know. I will try my best to help you out.

You can help me too by sharing this post or connecting with me on social networks. :D
Thanks and stay blessed!

Share this post

Explore more articles by Satbir

38 comments

Please leave comments related to the content. All comments are highly moderated and visible upon approval.

Comment Shortcodes

  • To insert an image, add [img]image_link[/img]
  • To insert a block of code, add [pre]parsed_code[/pre]
  • To insert a link, add [link=your_link]link_text[/link]
  • To insert a quote, add [quote]quote_text[/quote]
  • To insert a code, add [code]parsed_code[/code]
  1. can you create one that loads automatic instead of manually pasting the code each time we post a video?
  2. Hey! It is awesome... But can you make a frame with subscribe button please
  3. Thank you so much.This is very useful information.
  4. Not explained Clearly
  5. THANKS BROTHER, YOU'RE REALLY AWESOME i EMBED YOUR CODE IN MY POST!
    JUST CHECK IT

    http://citydungarpur.blogspot.com/2017/04/b-2-stealth-bomber-refueling.html
    1. THATS COOL.. THANKS A LOT
  6. Thank you so much, I'm gonna try it out in my site. :)
  7. I am struggle with this HTML part, when I copay and paste the codes that you provided here to my new post, it's not responsive and the Frame of Mac did not appear, they just appear like youtube normal embading. Please can u help me with this issue Please?
  8. Thanks bro! :)
  9. Nice work bro. I have been a huge fan of this blog and I have learnt a lot. Soon to feature your gadgets on my huge collection of gadgets.

    But before now, all I needed to do to make youtube video responsive which is very easy is just to change the '560' in the html code and replace it with 100%.

    You can check out a post that explains more on it here.. https://obhiabablog.blogspot.com.ng/2016/10/responsive-youtube-video-twiiter-tweet.blogger-post.html

    Thanks for the great post. Cudos.
  10. Please make this video
  11. Great!! I'm like "girl with a new dress"!! I loved it, it was very simple and very clear explanations. Congratulations!
  12. Why cloud't showing the thambnail.....?
    http://geosloow.blogspot.com/
    https://pakhomestudy.blogspot.com/
    http://frontend-school.blogspot.com/
  13. It is working absolutely fine but there is one problem as you have said if we dont wish to put css code in every post we can put it in our template before but in this case video is not responsive in mobile devices but if i put css code in every post than it is working fine in mobile devices also
  14. hey buddy this article has helped me a lot. I run a site where in embed videos regularly from ytb. I have bookmarked this post & i visit here every time when i need the code. Keep it up. Just want to let you know that you are of great help.
  15. how to change video size in second frame plz reply me back....

    my email: jhonpasha01@gmail.com
  16. Thanks bro!! really a good work and a lot impressed.Going to use it in my blog http://hatimkh20.blogspot.com
  17. I tried to follow but not as standard header
  18. hi, how "new google form" responsive on blogspot????
  19. probleme in first shadow

    i don't know where i past a code

    .post-body {
    position: relative;
    z-index: 1;
    }
  20. Ridiculously Awesome dud
  21. PLS HOW MAKE A QUOTE LIKE URS ???
  22. i'll try for it. wish work for my blog
  23. What is the method of dailymotion videos?
  24. এসো বন্ধু
    This comment has been removed by the author.
  25. এসো বন্ধু
    This comment has been removed by the author.
    1. Esobondhu @ Hey buddy please share the post URL where you inserted the video with my codes above. You can also email me using contact form.
      Regards!
  26. very useful information, Thank you for sharing
  27. amazing post on video its work very nice
    1. Chetan :: Thanks for your feedback, let me know you need my help. :)
  28. Great Article Bro.. Keep it up !! Just Love your articles ...
    1. Invictus :: Hello Buddy, thank you so much for your appreciation and love <3 :D
      Will contact you on FB soon about that topic we were discussing. Curious to know the result. :) Stay blessed buddy.
  29. Hi Sabir,

    Once again I am much impressed reading your tutorials. And this one got my attention quickly. Both the frames you've shared are super cool. I can't wait to use these codes at my blog for embedding videos.

    Great job! Can't resist sharing it on twitter, G+ and Pinterest. :)

    Rohan.
    1. Rohan :: So happy to see you there buddy. :)
      I am more than happy to know that you liked this post. Please let me know if you need my help. And I can't really thank you enough for your support.
      Thank you so much for everything you do..!!
    2. The pleasure is all mine buddy. :)
  30. nice share bro keep it up
    1. Tariq Aziz :: Thank you so much buddy, your support is all I need. :)
    2. ana3ayache
      This comment has been removed by the author.
Post a Comment