MyBB Community Forums

Full Version: i want youtube full screen support or option
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
as there is no youtube full screen option in mybb.
plz any body say how to create youtube full screen option.



thank u mybb community for giving support.
how are you embedding youtube videos ? don't you have full screen button in the youtube video player (viewer's selection) ..
ACP >> Templates & Style >> Templates >> Ungrouped Templates

Replace the video_youtube_embed template with this:
<iframe width="560" height="315" src="http://www.youtube.com/embed/{$id}" frameborder="0" allowfullscreen></iframe>
Mine looks like this:

<object type="application/x-shockwave-flash" class="video_embed" style="width: 650px; height: 500px;" data="http://www.youtube.com/v/{$id}"><param name="movie" value="http://www.youtube.com/v/{$id}" /></object>

Where can i allow fullscreen?

Thanks.
(2012-01-09, 09:51 PM)Alan Shepperson Wrote: [ -> ]ACP >> Templates & Style >> Templates >> Ungrouped Templates

Replace the video_youtube_embed template with this:
<iframe width="560" height="315" src="http://www.youtube.com/embed/{$id}" frameborder="0" allowfullscreen></iframe>

(2012-01-16, 07:46 AM)Alan Shepperson Wrote: [ -> ]
(2012-01-09, 09:51 PM)Alan Shepperson Wrote: [ -> ]ACP >> Templates & Style >> Templates >> Ungrouped Templates

Replace the video_youtube_embed template with this:
<iframe width="560" height="315" src="http://www.youtube.com/embed/{$id}" frameborder="0" allowfullscreen></iframe>

Thanks Alan.