• Resolved brm-dev

    (@brmecham)


    How can I make the video responsive (for mobile) for the YouTube V3 API playlist player? I see on your demo page that you are using a class called fluid-vids around the video iframe but the plugin by default does not have such a class around the video.

Viewing 1 replies (of 1 total)
  • Plugin Author Ciprian

    (@butterflymedia)

    That fluid-vids class is being added by Jetpack automatically.

    You can make the plugin responsive by using CSS media queries.

    @media screen and (max-width: 480px) {
        .element {
            width: 100%;
        }
    }

    The easiest way is by using the Additional CSS section in your theme’s Customizer.

    • This reply was modified 6 years, 8 months ago by Ciprian.
Viewing 1 replies (of 1 total)
  • The topic ‘How can I make it responsive?’ is closed to new replies.