@jcalvarezjr , indeed the lightbox option is quite tricky. The best option, as you mention is to use the full page option. And use a button to close the pop-up instead of the button of the pdf container. If you want to make it full screen (something similar to the lightbox option), just add another piece of html inside the pop-up:

div#fullwidthpopup , div#pdfpopup { width: 100% !important; height: 100% !important; position: fixed !important; top: 0 !important; left: 0 !important; margin-left: 0 !important; } div.fullwidthpopup .bubble-r-box , div.fullwidthpopup .RepeatingGroup, div.fullwidthpopup .HTML { width: 100% !important; height: 100% !important; }

and set the ID attribute of the pop-up and the pdf html to “pdfpopup” (as you can see in the code above)

Hope it helps!

1 Like