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!

საიტის გასაუმჯობესებელი სამუშაოების მიმდინარეობისას, შესაძლებლობების ნაწილი შეიზღუდება. თუ სტატიით ვერ მოახერხებ ხარვეზის გამოსწორება და შეკითხვის დასმა გსურთ, ჩვენი მხარდაჭერის გუნდი დაგეხმარებათ @FirefoxSupport გვერდის მეშვეობით Twitter-ზე და /r/firefox განყოფილებაში Reddit-ზე.

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

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

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)

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

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.