Due to security restrictions on Webflow, WordPress and WIX and similar "What You See Is What You Get" (WYSIWYG) platforms, embedded tours may not support full-screen mode. These restrictions apply to all iframe content added to websites on these platforms.
Currently, there's no way to bypass this restriction directly, but you can use a workaround:
Since full-screen mode is not available for embedded content, you can provide a direct link to the full-screen version of your tour:
Most WYSIWYG platforms support 'HTML code' blocks, allowing you to include this link in a format that suits your site’s design. You can use a simple text link, an image, a button, or any other element.
Here's an example of the code you can use:
<div style="width:640px"> <div> <iframe width='640' height='480' src='https://scenics.app/embed/...' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> </div> <div align="middle"> <a href="https://scenics.com/embed/..." target="_blank">Click to view in full screen</a> </div> </div>
To use this code:
Replace the
src='...'
andhref="..."
values with the direct link to the embedded version of your tour, which you can find in the iframe code provided by Scenics.Adjust the width and height settings to match your page’s design.
Modify the 'Click to view in full screen' text as needed.