FX 107.0.1 Tabs on Bottom

User Help for Mozilla Firefox
Post Reply
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

FX 107.0.1 Tabs on Bottom

Post by L.A.R. Grizzly »

I finally updated to FX 107.0.1 from FX 52.9.0esr (fresh clean install). I've been trying to find out how to get the Tab bar row underneath the Location bar row (if possible). Hours of search have left me ill informed. Would someone be kind enough to point me in the right direction? Thanx.
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.8.0esr, Thunderbird 115.8.1, and SeaMonkey 2.53.18
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: FX 107.0.1 Tabs on Bottom

Post by BruceAWittmeier »

See if anything here helps. This much of the code put my tabs below the url and bookmarks toolbar.
https://support.mozilla.org/en-US/questions/1339095

Code: Select all

/* TAB BAR - below nav-bar */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10 !important;}
#TabsToolbar {-moz-box-ordinal-group:1000 !important;}

#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 50vw !important;
}

#tabbrowser-tabs {
  width: 100vw !important;
}

/* navigator-toolbox - PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  position: relative !important; /*89+*/
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  background-color: var(--toolbar-bgcolor) !important;
}

/* TabsToolbar with menubar and titlebar hidden - rules for Firefox 65-73 */
*|*:root[tabsintitlebar]:not([inFullscreen="true"]):not([sizemode="maximized"]) #toolbar-menubar[autohide="true"] ~
 #TabsToolbar{
  bottom: var(--tab-adjust); /*ADJUST*/
}

/* TABS: height */
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#TabsToolbar {
  height: var(--tab-min-height) !important;
  margin-bottom: 1px !important;
  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
  background-color: var(--toolbar-bgcolor) !important;
  color:            var(--toolbar-color) !important;
/*  z-index: 1 !important; */
}
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: FX 107.0.1 Tabs on Bottom

Post by L.A.R. Grizzly »

BruceAWittmeier wrote:See if anything here helps. This much of the code put my tabs below the url and bookmarks toolbar. https://support.mozilla.org/en-US/questions/1339095
Thanks, Bruce. Would you know how I can modify the code to use my system colors instead of the light grey toolbar backgrounds?
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.8.0esr, Thunderbird 115.8.1, and SeaMonkey 2.53.18
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: FX 107.0.1 Tabs on Bottom

Post by BruceAWittmeier »

I would comment out the reference to colors:

/// background-color: var(--toolbar-bgcolor) !important;

/// box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
/// background-color: var(--toolbar-bgcolor) !important;
/// color: var(--toolbar-color) !important;
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
User avatar
L.A.R. Grizzly
Posts: 5396
Joined: March 15th, 2005, 5:32 pm
Location: Upstate Ohio, USA
Contact:

Re: FX 107.0.1 Tabs on Bottom

Post by L.A.R. Grizzly »

BruceAWittmeier wrote:I would comment out the reference to colors...
I fiddled with it and couldn't get it just right. I didn't want to mess things up, so I turned to a solid Theme (persona) that I can live with. Thanks for your help. I miss the configure-ability of the older versions of FX. I use Pale Moon as my main browser and Firefox as a backup. I put off updating for a few years now. It was just time to take the bull by the horns! Much appreciated! :wink:
Win7 Pro SP1 64 Bit
Comodo Internet Security
Pale Moon 33.0.2, Epyrus Mail 2.1.2, Firefox 115.8.0esr, Thunderbird 115.8.1, and SeaMonkey 2.53.18
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: FX 107.0.1 Tabs on Bottom

Post by BruceAWittmeier »

You're welcome.
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
Post Reply