Making a bigger back button in Firefox
09 March, 2025I've been hacking Firefox CSS to make the "Back" button bigger since 2004.
Here's the latest version, so that you can have small toolbar buttons except for the Back button, which for obvious Fitt's law reasons, you want to be bigger by default.
This is what it will look like:
And when you're hovering:
- Enable userChrome.css
- Go to
about:config
in your address bar - Search for
toolkit.legacyUserProfileCustomizations.stylesheets
- Set it to
true
- Go to
- Find your Firefox profile folder
- Go to
about:support
and find "Profile Folder" - Click Open Folder
- Go to
- In the
chrome
directory (create it if it doesn't exist), create a file calleduserChrome.css
- In that file add this CSS:
toolbar[mode="icons"] #back-button .toolbarbutton-icon {
border-radius: 0 !important;
}
toolbar[mode="icons"] #back-button .toolbarbutton-text {
display: block;
border-radius: 0 !important;
}
- Restart Firefox - done!
I found out what the relevant styles to apply were by using Firefox's Browser Toolbox.
You can also do something similar by applying one of the CSS files (to your userChrome.css as above) from MrOtherGuy's firefox-csshacks repository.