Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

how to remove 100% written between - and + ( - 100% + ) zoom in and out icon

  • 7 回覆
  • 6 有這個問題
  • 12 次檢視
  • 最近回覆由 eighthwonder

more options

hi friends, does any one know any tweak that could make that box on the left side with100% written in it vanish ? the box is located between the plus and minus (zoom in zoom out) icon on the Firefox 29's navigation bar it is an eye sore and unnecessarily takes up real estate

hi friends, does any one know any tweak that could make that box on the left side with100% written in it vanish ? the box is located between the plus and minus (zoom in zoom out) icon on the Firefox 29's navigation bar it is an eye sore and unnecessarily takes up real estate

被選擇的解決方法

Hi eighthwonder, after you install the Stylish extension, you can create a new rule from either of two places:

  • new "S" icon on the toolbat
  • Add-ons page, User Styles section

(See attached screen shot)

Stylish extension: https://addons.mozilla.org/firefox/addon/stylish/

從原來的回覆中察看解決方案 👍 5

所有回覆 (7)

more options

Hello eighthwonder,

Thanks for contacting Mozilla Support. I don't think there are any tweaks to remove the zoom level. One other option would be to remove the control from your UI and use the keyboard commands Control + or Control - to zoom in and out.

Some kind individual may create an addon that removes it at some point, so keep an eye on http://addons.mozilla.org.

Please let us know if this answers your question.

Cheers, Patrick

more options
more options

Maybe a custom style rule applied in a userChrome.css file or using the Stylish extension? See attached screen shot for demo.

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Hide Zoom Reset (%) button */
#zoom-reset-button {display:none !important;}
/* Shrink + and - to fit into regular space, YMMV on the size */
#zoom-controls toolbarbutton {min-width: 3.5em !important;}
more options

Toolbar, not menu?

When you move the controls to the toolbar, you don't want the second part of that rule, but instead you want to get rid of the extra separator in between the + and - buttons. So:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* Hide Zoom Reset (%) button */
#zoom-reset-button {display:none !important;}
/* Hide Extra Separator */
#zoom-controls separator:nth-of-type(1) {display:none !important;}
more options

@ jscher thank you for the reply :) that is exactly how i want that zoom in and out icon to look, without 100% box in between them. the problem is i do not know how to begin editing i will copy paste the solution but tell me what is the first step that will open up the editor so i could copy paste and save the changes. thanks and regards.

more options

選擇的解決方法

Hi eighthwonder, after you install the Stylish extension, you can create a new rule from either of two places:

  • new "S" icon on the toolbat
  • Add-ons page, User Styles section

(See attached screen shot)

Stylish extension: https://addons.mozilla.org/firefox/addon/stylish/

more options

Thank you Sir :) it worked like a charm, i really appreciate your help thank you very much. now my browser looks much much much better.

由 eighthwonder 於 修改