Tagged: embed, responsive, Youtube
you guys recommend https://wordpress.org/plugins/fitvids-for-wordpress/ to make the youtube embeds responsive and fill the page when a website is viewed on a phone. how do you use this? specifically: what is the jQuery Selector to use?
Hey!
You don’t have to configure anything, just enable it and that’s it. Give it a try.
Cheers!
Josue
Well, i think that’s because Enfold already does that, you don’t need the plugin after all :)
Hey!
No plugin would only make the videos responsive, which already are. You can add a Color Section with custom ID ( http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png ) then add following code to Quick CSS in Enfold theme options under General Styling tab to make the content of the color section fullwidth
#custom-id-of-color-section .container { width: 100%; }
Best regards,
Yigit
Hi!
You can add following code to Quick CSS instead to apply the code only on screens smaller than 480px
@media only screen and (max-width: 480px) {
#custom-id-of-color-section .container { width: 100%; }
}
Cheers!
Yigit
Hi!
I see you are now using a gif, try adding this code to make the background repeat:
#av_section_1 {
background-repeat: repeat !important;
}
Cheers!
Josue
If this is want you want to achieve, then yes. You can also set a custom id to that color section only, then simply change the selector in the code.
Regards,
Josue