Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 2 replies
  • 1 has this problem
  • 7 views
  • Last reply by 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?

All Replies (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

Modified by 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.