phpBB Media Embed PlugIn

Frequently Asked Questions

Can I make embedded content bigger and/or responsive?

Most of the embedded content is already responsive, if the content supports it.

By default, most embedded content is limited to a maximum width of 640 pixels. It will then scale down to fit smaller screens such as mobile devices.

You can adjust the size to be bigger or smaller with some simple CSS changes. Since this extension does not support this natively, you will need to hack a CSS file in your board's styles. Here are some examples you can add to your style's stylesheet.css:

Adjust the size of all embedded content to fill the post:

Code: Select all

[data-s9e-mediaembed] { max-width: 100% !important; }
Adjust the size of specific embedded content, like YouTube, to a maximum width of 1280:

Code: Select all

[data-s9e-mediaembed="youtube"] { max-width: 1280px !important; }
With this in mind, any of the allowed site's content can be tweaked to fit your board's style(s).