Not too much to ask, is it? Apparently it is. Took ages to set up as I envisaged, so thought I’d share it in case anyone else wants a quick fix.
This works on Mac version 115.32. It should be fine on newer versions, but may not work for you. Either check suggestions at end, run it through AI or just delete the stylesheet file and struggle on with the default upside down UX.

Caveat. To maximise screen space (and overcome the fact I can’t get bookmark text to appear when ALWAYS SHOW is selected), I access bookmarks from the main menu or Firefox top toolbar.

Prime Firefox for changes
- in nav bar type
about:config - agree to potentially ruin everything

- search
toolkit.legacyUserProfileCustomizations.stylesheets - use the toggle far right to select true to turn the hiddenâŻuserChrome/userContent system back on.
Set up aâŻuserChrome stylesheet
- Go to user/library/Application Support/Firefox/Profiles/default folder/
- Create new folder called chrome (all lowercase)
Alternative route to the default folder
- in nav bar type
about:profiles

- If you have options, the key is to use the current user .default profile
Prepare userChrome.css stylesheet
- Open a new page in a code editor and name it userChrome.css
- Copy-paste the code below
- Change the
rgb(206,188,167)or#000000colour values as you wish - Save – under Format, file encoding is UTFâ8 without BOM and make sure the syntax is css.
- full path is user/library/Application Support/Firefox/Profiles/default folder/chrome/userChrome.css
- Quit Firefox and restart.
/* ==============================================================
USERCHROME.CSS â Compact layout with a collapsed Bookmarks toolbar â Tested on Firefox 115.32 (2026â05â16) */
============================================================== */
/* ==== SIMPLE FIX â force the Bookmarks toolbar to be visible ==== */
#PersonalToolbar,
#PersonalToolbar * {
display: flex !important; /* make sure the bar stays in the layout */
visibility: visible !important; /* never hide it */
opacity: 1 !important; /* fully opaque */
background: rgb(206,188,167) !important; /* your brown colour (optional) */
color: #000000 !important; /* black label text (change if you want) */
text-shadow: none !important; /* remove theme shadows */
}
/* --------------------------------------------------------------
0ď¸âŁ BASIC STRUCTURE â keep the three rows relative
-------------------------------------------------------------- */
#navigator-toolbox,
#nav-bar,
#PersonalToolbar {
position: relative !important;
}
/* Minimum height of the toolbox when the bookmarks bar is hidden:
navâbar (51âŻpx) + tabâbar (45âŻpx) = 96âŻpx.
When the bookmarks toolbar appears it will add its own 28âŻpx,
automatically increasing the toolbox height. */
#navigator-toolbox {
min-height: 96px !important; /* no fixed height â it can shrink */
}
/* --------------------------------------------------------------
1ď¸âŁ NAVIGATION BAR â stays at the very top, white background
-------------------------------------------------------------- */
#nav-bar {
margin-top: 0 !important;
height: 51px !important;
background: #ffffff !important;
position: absolute !important;
top: 0; left: 0; right: 0;
z-index: 3 !important;
box-shadow: none !important;
}
/* --------------------------------------------------------------
2ď¸âŁ TAB BAR â thin coloured strip, under the navâbar
-------------------------------------------------------------- */
#TabsToolbar {
/* Start just under the navigation bar */
margin-top: 51px !important; /* same as navâbar height */
/* Compact height â enough for trafficâlights, tab titles and â+â */
min-height: 45px !important;
height: 45px !important;
padding-top: 0 !important;
padding-bottom: 4px !important; /* room for the â+â button */
background: rgb(206,188,167) !important; /* your brown colour */
background-clip: border-box !important;
position: relative !important;
z-index: 1 !important; /* under the navâbar */
}
/* Make the whole coloured strip clickable (prevents dead space) */
#TabsToolbar::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}
/* --------------------------------------------------------------
3ď¸âŁ TABS â tiny top offset so the selectedâtab highlight stays
inside the coloured area
-------------------------------------------------------------- */
.tabbrowser-tab {
margin-top: 2px !important; /* small offset */
z-index: 2 !important; /* above the coloured background */
}
/* Keep the ânewâtabâ (+) button, the viewâicon and the trafficâlights
visible */
#TabsToolbar .toolbarbutton-1,
#TabsToolbar .toolbarbutton-1 > .toolbarbutton-icon {
visibility: visible !important;
opacity: 1 !important;
}
/* --------------------------------------------------------------
4ď¸âŁ BOOKMARKS TOOLBAR â same colour, fully opaque,
collapses to zero when hidden
-------------------------------------------------------------- */
#PersonalToolbar {
background: rgb(206,188,167) !important;
min-height: 28px !important; /* height **when shown** */
padding: 0 4px !important;
margin-top: 0 !important; /* sits right under the tab bar */
position: relative !important;
z-index: 2 !important; /* above the coloured background */
opacity: 1 !important; /* force full opacity */
}
/* Force the label colour to be visible */
#PersonalToolbar .bookmark-item,
#PersonalToolbar .bookmark-item .toolbarbutton-text,
#PersonalToolbar .bookmark-item .toolbarbutton-icon + .toolbarbutton-text {
color: #000000 !important; /* black â change to any colour you like */
text-shadow: none !important; /* remove any inherited shadow */
opacity: 1 !important; /* make sure it isnât faded */
visibility: visible !important;
}
/* --------------------------------------------------------------
5ď¸âŁ FORCE BOOKMARKâBAR TEXT TO BE VISIBLE (covers older FF)
-------------------------------------------------------------- */
#PersonalToolbar {
background-color: rgb(206,188,167) !important; /* same brown */
background-image: none !important;
opacity: 1 !important;
}
/* Text inside each bookmark button â works preâ and postâ91 */
#PersonalToolbar .bookmark-item .toolbarbutton-text,
#PersonalToolbar .bookmark-item .toolbarbutton-icon + .toolbarbutton-text,
#PlacesToolbarItems .bookmark-item .toolbarbutton-text,
#PlacesToolbarItems .bookmark-item .toolbarbutton-icon + .toolbarbutton-text {
color: #000000 !important; /* black â change to #fff for white */
text-shadow: none !important;
opacity: 1 !important;
visibility: visible !important;
}
/* Ensure the whole button (iconâŻ+âŻlabel) stays fully opaque */
#PersonalToolbar .bookmark-item,
#PlacesToolbarItems .bookmark-item {
opacity: 1 !important;
visibility: visible !important;
}
/* ==== COLLAPSED STATE ==== */
/* Firefox adds collapsed="true" when the toolbar is set to âNeverâ. */
#PersonalToolbar[collapsed="true"] {
display: none !important; /* remove from layout */
height: 0 !important;
min-height: 0 !important;
margin: 0 !important;
padding: 0 !important;
}
/* Keep bookmark icons visible when the toolbar is shown */
#PersonalToolbar toolbarbutton,
#PersonalToolbar .bookmark-item {
visibility: visible !important;
opacity: 1 !important;
}
/* --------------------------------------------------------------
6ď¸âŁ WHEN THE MENU BAR IS SHOWN â keep the same vertical size
-------------------------------------------------------------- */
#toolbar-menubar[autohide="false"] ~ #TabsToolbar {
min-height: 45px !important; /* same as normal tabâbar */
}
/* --------------------------------------------------------------
7ď¸âŁ OPTIONAL â faint tint for the navâbar (uncomment if you like)
-------------------------------------------------------------- */
/* #nav-bar { background: rgba(255,255,255,0.15) !important; } */
/* --------------------------------------------------------------
8ď¸âŁ CONTEXTâMENU CLEANâUP (unchanged from your original file)
-------------------------------------------------------------- */
#context-sendimage,
#context-sep-setbackground,
#context-setDesktopBackground,
#context-inspect-a11a {
display: none !important;
}
/* --------------------------------------------------------------
Hide the âFor quick access âŚâ placeholder when the toolbar is empty
-------------------------------------------------------------- */
#personal-toolbar-empty-description,
#personal-toolbar-empty-description * {
display: none !important; /* or opacity:0 / visibility:hidden */
}
Not too shabby a result. Quit/restart to see changes is very fast.
Finishing touches are to customise the top toolbar. Right-click it and choose shortcuts
Troubleshooting
I didn’t need to do any of these but in case…
nothing changes
Cache. Type about:support in nav bar and refresh Firefox

Conflicting extensions. Some UIâtheming extensions inject their own CSS, overriding yours. Disable or move those extensions temporarily to see if your stylesheet takes effect.
Firefox updates. IDs like #PersonalToolbar could be renamed. Keep an eye on the Firefox UI Customizer subreddit or GitHub for âuserChrome updatesâ when a new major version ships.
Improve the code
I’m no developer so the code could be bloaty. And there are extra options you might want to check out.
Use CSS variables for colour â Change the colour in one place instead of hunting every rgb(206,188,167) occurrence.
:root {
--my-bg: rgb(206,188,167);
--my-fg: #000000;
}
/* then replace */
background: var(--my-bg) !important;
color: var(--my-fg) !important;
Add a fallback for highâcontrast themes â Some users toggle the OS highâcontrast mode and the black text may become invisible on a dark background. A quick media query helps:
@media (prefers-color-scheme: dark) {
#PersonalToolbar,
#PersonalToolbar * {
color: #ffffff !important;
}
}
Optional âcompactâ toggle â If you ever want to hide the extra 28âŻpx when the bookmarks bar is empty, you can add:
#PersonalToolbar:empty {
display: none !important;
}
(there is already a collapsed rule, but this catches the empty case.)
Next I think I will show the Dock and some tricks to keep it unclttered but brimming with goodness.
Leave a Reply