MG 2.1 Can you set the max video player size?

drastic

Well-known member
Hey,

So my videos (youtube embeds and uploads) are massive on the screen. I don't currently have a sidebar, so the videos are huuuuge.

Can I set the default size to something like 800x600 or something? THX
 
I have actually made mine larger, so I assume thies with your desired width or max-width would do the trick.

However I'm a bit confused because the default width is actually only 560px anyway

Code:
// video width
.bbMediaWrapper
{
    width: 800px;
}

NB: I assume I could have max-width however the above works responsively anyway)
 
I have actually made mine larger, so I assume thies with your desired width or max-width would do the trick.

However I'm a bit confused because the default width is actually only 560px anyway

Code:
// video width
.bbMediaWrapper
{
    width: 800px;
}

NB: I assume I could have max-width however the above works responsively anyway)

Did you place that in the extra file?
 
NB: I made a mistake here and didn't realise this was about Media gallery.

In this case I believe the code should be

Code:
// video width
.media-container .bbMediaWrapper
{
    width: 800px;
}

or (for posts also) you may want this:


Code:
// video width
.bbMediaWrapper,.media-container .bbMediaWrapper
{
    width: 800px;
}
 
how would we get the video or image next to the side bar? instead above it all. im having same issue, the video's are huge and i would rather have the videos above the comments and next to the sidebar.
 
Top Bottom