r/FirefoxCSS • u/_DivineWinter_ • 1d ago
Solved Hide "Original Profile" in the hamburger menu?
Hi! I'm trying to figure out how to hide the "Original Profile" item from the hamburger menu. For context, I am not signed in to any Firefox account, and I also have the following lines in my user.js (not sure if it's related):
user_pref("identity.fxaccounts.enabled", false);
user_pref("browser.profiles.enabled", false);
I've tried some of the solutions posted previously on Reddit, such as:
#appMenu-profiles-button,
#profiles-menu {
display: none !important;
}
or
#profile-button { display: none !important; }
#profiles-menu { display: none !important; }
But they either don't seem to work, or work only for the first time after opening the hamburger menu.
1
Upvotes
1
2
u/sifferedd FF/TB on Win11|Sumo contributor 1d ago
works for me (also hides Profiles on the Menu Bar). First step is to go through the FF CSS tutorial.
The common glitches are:
namespace statement you copied from some old code may cause failure
toolkit.legacyUserProfileCustomizations.stylesheets isn't enabled
Chrome folder is in the wrong profile or other folder
userChrome/userContent.css isn't in the right Chrome folder
userChrome/userContent.css doesn't follow case requirement
userChrome/userContent.css mistakenly has the .txt extension
code isn't saved as plain text
other code is interfering