Page 1 of 1

Firefox 57 Tabs On Bottom Easy Solution

Posted: Sun Nov 19, 2017 8:06 pm
by DougGuy
Create a folder named chrome (in lower case) in the user/.mozilla/firefox/whatever.default/ directory and drop the userChrome.css file into it and restart Firefox. Tabs should be on bottom now. Thanks to glebihan for the help!

Here are the contents of the userChrome.css file I used:

Code: Select all

/* Contents of ~/.mozilla/firefox/whatever.default/chrome/userChrome.css */

/* Tab bar below Navigation & Bookmarks Toolbars 
   For best results, show Title Bar or Menu Bar */
#nav-bar { /* main toolbar */
  -moz-box-ordinal-group: 1 !important;
  border-top-width: 0 !important; 
}
#PersonalToolbar { /* bookmarks toolbar */
  -moz-box-ordinal-group: 2 !important;
}
#TabsToolbar { /* tab bar */
  -moz-box-ordinal-group: 3 !important;
}

Re: Firefox 57 Tabs On Bottom Easy Solution

Posted: Tue Nov 21, 2017 4:36 pm
by BG405
Thanks for posting this! 8)

Re: Firefox 57 Tabs On Bottom Easy Solution

Posted: Wed Nov 22, 2017 11:13 am
by ronsmeyer
That is good information. My question is how did you know to do this and where are all of these userChrome options and variables documented? I can see this being very useful.

Re: Firefox 57 Tabs On Bottom Easy Solution

Posted: Wed Nov 22, 2017 12:58 pm
by aes2011
ronsmeyer wrote:That is good information. My question is how did you know to do this and where are all of these userChrome options and variables documented? I can see this being very useful.
They're scattered all over the place :(

http://forums.mozillazine.org
https://github.com/Aris-t2/CustomCSSforFx
https://www.userchrome.org
https://support.mozilla.org/en-US/questions/1185426
etc
are some resources.

Re: Firefox 57 Tabs On Bottom Easy Solution

Posted: Wed Nov 22, 2017 1:30 pm
by sammiev
@ DougGuy,

Many thanks for your post. :D