Reputation: 1
when I'm using iframe to embed gallery into external site, lightbox loads only inside iframe. Example, 640x800px frame.
Is it possible to force it outsite of iframe, to go fullscreen? Like it's with video players.
I'm using Foobox.
Upvotes: 0
Views: 1526
Reputation: 1373
You can do it with HTML5 - see example, JS Bin with iframe example and documentation here.
Upvotes: 1
Reputation: 1025
You can use a div instead of an iframe.
HTML
<div id="gallery">
The gallery
</div>
CSS
#gallery {
// your css
}
Upvotes: 0