There are 4 toolbars at the top of the Firefox screen. The default order from top to bottom seems to be:
Menu bar
Tabs bar
Navigation bar
Bookmarks bar (which Fir… (funda kabanzi)
There are 4 toolbars at the top of the Firefox screen. The default order from top to bottom seems to be:
Menu bar
Tabs bar
Navigation bar
Bookmarks bar (which Firefox apparently calls "PersonalToolbar")
I would like to move the Bookmarks bar above the Tabs bar so the order is;
Menu bar
Bookmarks bar
Tabs bar
Navigation bar
I tried to use ChatGPT to accomplish this. After well over 6 iterations, I gave up (ChatGPT was still going strong - hallucinating?). The only code in userChrome.css that accomplished this is shown below. Unfortunately it leaves the order as:
Bookmarks
Navigation
Menu
Tabs
Can a human expert help me where ChatGPT failed?
___________________
/* Move the bookmarks toolbar above the tabs */
- navigator-toolbox {
display: flex;
flex-direction: column-reverse;
}