7

I am displaying a pdf file in browser using iframe. It is working fine but i want to disable/hide acrobat toolbar(below image).

Toolbar in firefox

I tried the solution #toolbar=0&statusbar=0 it's working great on chrome but it's not working on Firefox. How can I achieve this?

Nabin
  • 11,216
  • 8
  • 63
  • 98
Sumit Kamboj
  • 846
  • 2
  • 10
  • 17

2 Answers2

1

Browsers handle PDF Open Parameters differently (if at all). It is not possible with Javascript to force browsers to support PDF Open Parameters if the browser vendor did not build an API for it.

Paul Trimor
  • 320
  • 3
  • 15
0

For anyone searching, there is an answer here https://support.mozilla.org/en-US/questions/1119523 from user jscher2000 (https://support.mozilla.org/en-US/user/jscher2000)

#outerContainer #mainContainer div.toolbar {
  display: none !important; /* hide PDF viewer toolbar */
}
#outerContainer #mainContainer #viewerContainer {
  top: 0 !important; /* move doc up into empty bar space */
}
ckm
  • 1,326
  • 10
  • 15
  • 8
    This is not CSS you can add to your page. It has to be added to the `userContent.css` file of the browser – dehart Dec 11 '19 at 11:23