XF 1.5 Bigger YouTube embed?

cayne

Member
When I use an embed like this one

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.

The window is super tiny. Is there a way to load it in a bigger window (maybe custom size)?

I tried to search for this, but haven't found a thread for this issue.

Thanks in advance.
 
You would just edit the bb code media site embed HTML to make the video larger.

For responsive video, you need to wrap the embed HTML with a div and class then add something like this to EXTRA.css:
Code:
.ctaResponsiveVideo
{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
}

.ctaResponsiveVideo iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}
 
Top Bottom