how to fix the youtube video not responsive in different screen size?

Discussion in 'BizWay WordPress Theme' started by effyeweb, Jul 1, 2014.

  1. effyeweb

    effyeweb Member

    Joined:
    Dec 25, 2012
    Messages:
    485
    Likes Received:
    7
    how to fix the youtube video not responsive in different screen size?

    and plugin can use to fix it ?
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this, paste your YouTube video embed code in the code format given below.
    And use it where you want to add video.

    Code:
    <div class="videoWrapper">
        <!-- Copy & Pasted your video embed code from YouTube -->
    </div>
    After this Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    }
    .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page