Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes

The zoom buttons are not available in full screen mode when clicking full screen on the embed. How can I guarantee their visibility so that people can zoom in and out?

in how_to by (120 points)
  

1 Answer

0 votes

The Viewer Display Zoom in/out buttons are hidden by design, but you can append the following CSS in the Resources section of the export dialog to keep the Zoom in/out buttons visible even when the content is being viewed at fullscreen:

.hideFS { display:inline-block !important; }

@media (max-width: 780px) {
 .hideFS { display:table-cell !important; }
}
by (26.1k points)