Full screen button not working in iframe

jazperson

New member
Hi,

I made a fancybox iframe popup and inside the popup if my 360 product viewer. All buttons are working except for the full screen. It only works if the product viewer is not in the popup box. Any help? Thanks.

This is the link to the page where my button for 360 product viewer is located - [linked-removed]
 

WebSupport

Active member
Hi!

Please try adding allowfullscreen to your iframe element:

Code:
<iframe src="..." width="..." height="..." frameborder="0" scrolling="no" allowfullscreen></iframe>
 

molcha

New member
Hi there,

Getting some problems with the full screen button & toolbar.

In free version toolbar doesn't showing at all, when I upload published files to the server.
It doesn't work for any browser.

http://molchanov.ws/b/ma.html

In license version it doesn't showing full screen button at any browser too.
In Chrome it docent showing all toolbar.

Any suggestions?

Thank you,

Andrew
 

WebSupport

Active member
Hi Andrew, looks like the issue is that your Apache webserver treats the .svg (vector) images that we use in the toolbar as text and reports them as text to the browser. To resolve, please add the following to your .htaccess:

Code:
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
Copied from here:
https://davidwalsh.name/serve-svg-image
 
Top