Nightly 58.0a1 - how to hide back/forward buttons?

Discussion about official Mozilla Firefox builds
Post Reply
RedPirate
Posts: 26
Joined: September 27th, 2011, 9:25 pm

Nightly 58.0a1 - how to hide back/forward buttons?

Post by RedPirate »

https://img1.picload.org/image/dgpopcgr/ff.png

I'd like to hide them.

Can it be done? Preferably without any addons.
Last edited by James on October 16th, 2017, 10:59 pm, edited 1 time in total.
Reason: image was way to wide for img tags at 1,905px by 109px
User avatar
Aris
Posts: 3248
Joined: February 27th, 2011, 10:14 am

Re: Nightly 58.0a1 - how to hide back/forward buttons?

Post by Aris »

It is possible.

Create within your profile folder a subfolder called \chrome\ and create a text file called userChrome.css there (not userChrome.txt or userChrome.css.txt).

Add this to css file:

Code: Select all

#back-button, #forward-button {
  display: none;
}
RedPirate
Posts: 26
Joined: September 27th, 2011, 9:25 pm

Re: Nightly 58.0a1 - how to hide back/forward buttons?

Post by RedPirate »

That was very helpful, thank you. Can you recommend any specific reading material about userChrome.css and what else you can modify with it? Besides what is in your sig.
User avatar
WaltS48
Posts: 5141
Joined: May 7th, 2010, 9:38 am
Location: Pennsylvania, USA

Re: Nightly 58.0a1 - how to hide back/forward buttons?

Post by WaltS48 »

RedPirate wrote:That was very helpful, thank you. Can you recommend any specific reading material about userChrome.css and what else you can modify with it? Besides what is in your sig.
http://kb.mozillazine.org/index.php?tit ... Chrome.css
Linux Desktop - AMD Athlon(tm) II X3 455 3.3GHz | 8.0GB RAM | GeForce GT 630
Windows Notebook - AMD A8 7410 2.2GHz | 6.0GB RAM | AMD Radeon R5
jetspeedz
Posts: 200
Joined: January 4th, 2013, 12:11 am

Re: Nightly 58.0a1 - how to hide back/forward buttons?

Post by jetspeedz »

Aris wrote:It is possible.

Create within your profile folder a subfolder called \chrome\ and create a text file called userChrome.css there (not userChrome.txt or userChrome.css.txt).

Add this to css file:

Code: Select all

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

Anyway via CSS to combine forward back and even reload/stop?
Post Reply