Gsk8
Active member
In the Admin panel, Content > BB code media sites. Edit the Instagram entry and make sure it's enabled.
Hi there! Just upgraded, but the Instagram is still not showing in the options even though I have it turned on in ACP?
In the Admin panel, Content > BB code media sites. Edit the Instagram entry and make sure it's enabled.
Maybe you unchecked theHi there! Just upgraded, but the Instagram is still not showing in the options even though I have it turned on in ACP?
Show this site on the list of 'supported' sites shown to visitors
option in the site's config?You can disable it via your admin panel if you search for theCan I remove this part from the admin panel?
Allow users to search for embeddable content in remote pages
option in the admin panel's search box.Thank youYou can disable it via your admin panel if you search for theAllow users to search for embeddable content in remote pages
option in the admin panel's search box.
By the looks of it, it's probably just you(r style) but I'd like to fix it if I can. I'm surprised by the fact that the embed grows in height without pushing down the quotes and the rest of the page's content. Off the top of my head I don't know how that could happen accidentally.but maybe it really is just us then, but it's weird that's the only embed that breaks, all the other ones work fine
thank you so much!By the looks of it, it's probably just you(r style) but I'd like to fix it if I can. I'm surprised by the fact that the embed grows in height without pushing down the quotes and the rest of the page's content. Off the top of my head I don't know how that could happen accidentally.
If you can send me a link to that page on your site (the one you showed in the screenshot) I'll see if I can reproduce it.
The issue originates from your
extra.less
template:.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
max-height:500px !important;
}
.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
max-height:500px !important;
overflow: auto;
}
well, that DID help ... somewhatThe issue originates from yourextra.less
template:
That rule limits the height of the post but does not specify how to handle its overflow, that's why it spills over the rest.CSS:.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) { max-height:500px !important; }
CSS:.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) { max-height:500px !important; overflow: auto; }
why does it only break on mastodon embeds, though? all the other ones work just fine (including bsky)You have to make a choice between limiting the size of the entire post and cause it to scroll, or not limit it at all. You can still limit the size of individual embeds either way.
yes, but that rule was created specifically because it was breaking, except before the embeds were set to 100vh, before adding the ruleYour CSS rule only targets posts that contain Mastodon embed:.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"])
You should be able to limit the Mastodon embed themselves, with automatic scrollbars where needed, eg:yes, but that rule was created specifically because it was breaking, except before the embeds were set to 100vh, before adding the rule
iframe[data-s9e-mediaembed="mastodon"] {
max-height:500px !important;
overflow: auto;
}
You should be able to limit the Mastodon embed themselves, with automatic scrollbars where needed, eg:
CSS:iframe[data-s9e-mediaembed="mastodon"] { max-height:500px !important; overflow: auto; }
Thanks, this URL works fine.
We use essential cookies to make this site work, and optional cookies to enhance your experience.