Move tabs to under address/bookmarks

User Help for Mozilla Firefox
Post Reply
mizze
Posts: 1
Joined: November 14th, 2017, 1:48 pm

Move tabs to under address/bookmarks

Post by mizze »

](*,) I can't function with my tabs at the top of the page. Can we get an option of where to place them? This is literally killing my productivity.
siffemoz
Posts: 250
Joined: January 29th, 2016, 4:36 pm

Re: Move tabs to under address/bookmarks

Post by siffemoz »

Put this in your userChrome.css file:

/* Tabs on bottom */
/* http://forums.mozillazine.org/viewtopic ... &t=3033068 */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {-moz-box-ordinal-group:1000!important}
User avatar
LIMPET235
Moderator
Posts: 39936
Joined: October 19th, 2007, 1:53 am
Location: The South Coast of N.S.W. Oz.

Re: Move tabs to under address/bookmarks

Post by LIMPET235 »

[Ancient Amateur Astronomer.]
Win-10-H/64 bit/500G SSD/16 Gig Ram/450Watt PSU/350WattUPS/Firefox-115.0.2/T-bird-115.3.2./SnagIt-v10.0.1/MWP-7.12.125.

(Always choose the "Custom" Install.)
enchant
Posts: 14
Joined: July 31st, 2004, 6:51 am

Re: Move tabs to under address/bookmarks

Post by enchant »

siffemoz, thanks for that info. I'm starting to get Firefox back to where I can use it again. Tabs are where they should be, font is large enough for a non-teenager to read... Next, it would be nice if I could get my bookmarks toolbar back above the address bar. Right now, I have:

menu
address bar
bookmarks bar
tabs
[page itself]

I'd just like to swap the address bar and bookmarks. Is that another simple userChrome.css change?
User avatar
lovemyfoxy
Posts: 2337
Joined: December 11th, 2009, 11:23 am
Location: USA

Re: Move tabs to under address/bookmarks

Post by lovemyfoxy »

Am I correct that any of my own comments go between /* and */ ?
I like to title all my code in case I have to remove it later.
2 Desktops--Win 7 Ult.SP1 x64/6GB RAM /Firefox 52.9ESR/Waterfox64 2022.11/Thunderbird 52.9ESR/BitWarden PW Manager/Verizon FIOS wired network
enchant
Posts: 14
Joined: July 31st, 2004, 6:51 am

Re: Move tabs to under address/bookmarks

Post by enchant »

That is correct.
/* this is a comment */
This isn't...
User avatar
Kyliefan001
Posts: 380
Joined: August 19th, 2004, 8:54 pm
Location: Canada

Re: Move tabs to under address/bookmarks

Post by Kyliefan001 »

enchant wrote:siffemoz, thanks for that info. I'm starting to get Firefox back to where I can use it again. Tabs are where they should be, font is large enough for a non-teenager to read... Next, it would be nice if I could get my bookmarks toolbar back above the address bar. Right now, I have:

menu
address bar
bookmarks bar
tabs
[page itself]

I'd just like to swap the address bar and bookmarks. Is that another simple userChrome.css change?
Not a coder but this might be what your looking for.

@namespace url("http://www.mozilla.org/keymaster/gateke ... s.only.xul"); /* only needed once */

.tab-close-button:not([pinned="true"]) { display: -moz-box !important; }

#TabsToolbar { -moz-box-ordinal-group: 2; } #nav-bar{ border-top-width: 0px !important; }
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.11) Gecko/20101012/3.6.11
Gubbio
Posts: 161
Joined: December 29th, 2008, 12:36 pm

Re: Move tabs to under address/bookmarks

Post by Gubbio »

@siffemoz
siffemoz wrote:Put this in your userChrome.css file:

/* Tabs on bottom */
/* http://forums.mozillazine.org/viewtopic ... &t=3033068 */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {-moz-box-ordinal-group:1000!important}
My God, it worked ! :D =D>
enchant
Posts: 14
Joined: July 31st, 2004, 6:51 am

Re: Move tabs to under address/bookmarks

Post by enchant »

Kyliefan001 wrote:Not a coder but this might be what your looking for.
Thanks. I gave it a try, but it didn't change.
tramp
Posts: 27
Joined: October 18th, 2007, 10:27 pm

Re: Move tabs to under address/bookmarks

Post by tramp »

siffemoz wrote:Put this in your userChrome.css file:
Thank you.
Demian
Posts: 20
Joined: August 14th, 2003, 12:13 pm

Re: Move tabs to under address/bookmarks

Post by Demian »

This is what worked for me:
nav-bar { /* main toolbar containing address bar, search bar, add-on icons */

-moz-box-ordinal-group: 1 !important;

}
#PersonalToolbar { /* bookmarks toolbar */

-moz-box-ordinal-group: 2 !important;

}
#TabsToolbar { /* tab bar */

-moz-box-ordinal-group: 3 !important;

}

Hope it helps
enchant
Posts: 14
Joined: July 31st, 2004, 6:51 am

Re: Move tabs to under address/bookmarks

Post by enchant »

Demian wrote:This is what worked for me:
Which problem are you addressing with that code?
Demian
Posts: 20
Joined: August 14th, 2003, 12:13 pm

Re: Move tabs to under address/bookmarks

Post by Demian »

enchant wrote:
Demian wrote:This is what worked for me:
Which problem are you addressing with that code?
That code would move tabs below the bookmarks bar; so it would be 1 Address bar, 2- Bookmarks, & 3 - Tabs

The order can be adjusted to individual preference.
Post Reply