Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

How do I disable the toolbar when using the Firefox PDF Reader?

  • 2 odpovede
  • 12 má tento problém
  • 2761 zobrazení
  • Posledná odpoveď od loriR

more options

I have a website that contains an embedded PDF. I want to be able to remove the toolbar and scroll bars that display when using the Firefox PDF Reader.

It is my understanding that I could switch to the Adobe Reader, as they seem to have options that can be set that can achieve what I need, but I am on Linux and there is no longer support for Linux environments.

Is there a way to remove the toolbar and scroll bars when viewing a PDF?

Any help would be appreciated. Thank you.

I have a website that contains an embedded PDF. I want to be able to remove the toolbar and scroll bars that display when using the Firefox PDF Reader. It is my understanding that I could switch to the Adobe Reader, as they seem to have options that can be set that can achieve what I need, but I am on Linux and there is no longer support for Linux environments. Is there a way to remove the toolbar and scroll bars when viewing a PDF? Any help would be appreciated. Thank you.

Vybrané riešenie

I'm not aware of any setting that removes the toolbar in Firefox's PDF viewer. A custom style rule could do it on a user-by-user basis, for example:

#outerContainer #mainContainer div.toolbar {
  display: none !important; /* hide PDF viewer toolbar */
}
#outerContainer #mainContainer #viewerContainer {
  top: 0 !important; /* move doc up into empty bar space */
}

Example before-and-after screenshot attached.

You can apply custom style rules to content displayed in Firefox using either a userContent.css file or the Stylish extension. Is that something you might want to try?

Čítať túto odpoveď v kontexte 👍 2

Všetky odpovede (2)

more options

Vybrané riešenie

I'm not aware of any setting that removes the toolbar in Firefox's PDF viewer. A custom style rule could do it on a user-by-user basis, for example:

#outerContainer #mainContainer div.toolbar {
  display: none !important; /* hide PDF viewer toolbar */
}
#outerContainer #mainContainer #viewerContainer {
  top: 0 !important; /* move doc up into empty bar space */
}

Example before-and-after screenshot attached.

You can apply custom style rules to content displayed in Firefox using either a userContent.css file or the Stylish extension. Is that something you might want to try?

more options

This worked very well. Thank you for your timely response and thorough answer!