Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Is it possible to remove back and reload button in browser without using javascript. And also does firefox support Qt Objects.

  • 2 回覆
  • 1 有這個問題
  • 7 次檢視
  • 最近回覆由 cor-el

more options

I want to remove the back and reload button from firefox browser completely, I dont want to do it using javascript. Does firefox SDK can help to build a browser, removing the back and reload button? Does firefox support QT object interactions?

I want to remove the back and reload button from firefox browser completely, I dont want to do it using javascript. Does firefox SDK can help to build a browser, removing the back and reload button? Does firefox support QT object interactions?

所有回覆 (2)

more options

This add-on can help you,

Many of us are using; Classic Theme Restorer (Customize Australis) {web link} Restore squared tabs, appmenu, add-ons bar, small button view and more on Australis UI (Windows/MacOSX/Linux + Fx 29+).

This will restore many of the things the last upgrades took away.

http://forums.mozillazine.org/viewtopic.php?f=48&t=2827985 Classic Theme Restorer - Discussion Thread (v2)

edit: removed email address from public as it is posted on a.m.o page - Classic Theme Restorer - Support E-mail

由 James 於 修改

more options

You can remove items in the user interface via CSS code in the userChrome.css file.

Note that the Reload button behaves as three different buttons as it shows like a combined Stop/Reload/Go button.

  • Stop button: while the page is loading
  • Reload button: when the page has finished loading
  • Go button: when you modify the location/address bar content

Do you want yo hide all three states?

Do you want to remove both the back and forward buttons?

Hiding the Back and Forward button doesn't work well for me because the urlbar get get a border at the left end. Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#back-button, #forward-button {display:none!important;}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use the DOM Inspector to check what rules are applied to an element.