Firefox 65: how to have tabs below the address bar?












5















With Firefox 65, how do I have tabs placed below the address (URL) bar and not above?










share|improve this question



























    5















    With Firefox 65, how do I have tabs placed below the address (URL) bar and not above?










    share|improve this question

























      5












      5








      5


      1






      With Firefox 65, how do I have tabs placed below the address (URL) bar and not above?










      share|improve this question














      With Firefox 65, how do I have tabs placed below the address (URL) bar and not above?







      firefox






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 2 at 4:34









      DK BoseDK Bose

      14.8k124288




      14.8k124288






















          2 Answers
          2






          active

          oldest

          votes


















          5














          Users of previous versions of Firefox have found that if they had tabs below the address bar, the upgrade to version 65 broke that: tabs appear above the address bar.



          userChrome.css code fix for normal browsing (See further down for code that works for both normal and Private browsing windows.)



          For Firefox 65 users who prefer to have tabs appear below the address bar, the procedure is described in Forum Response - Tabs below the URL bar




          Firefox's style or appearance can be modified by creating a chrome folder inside your Firefox profile folder and then placing a userChrome.css file inside, that includes a custom style rule. The rules you put in the userChrome.css file will override the default styles in Firefox.




          with this caution:




          Custom style rules might not work every time because of other factors (such as incompatibility with other custom style rules) beyond the Mozilla community's control. Your custom style rule might also stop working each time a new Firefox release comes out.




          On my system, this is the path to userChrome.css:



          /home/dkb/.mozilla/firefox/prefix.suffix/chrome/userChrome.css


          Both chrome and userChrome.css are case-sensitive.



          The following lines needs to be placed in userChrome.css:



          @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

          /* TABS on bottom */
          #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
          #TabsToolbar {-moz-box-ordinal-group:1000!important}

          #TabsToolbar {
          position: absolute !important;
          bottom: 0 !important;
          width: 100vw !important;
          }
          #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
          padding-bottom: var(--tab-min-height) !important;
          }
          #tabbrowser-tabs {
          width: 100vw !important;
          }


          Save the file and restart Firefox.



          Notes:




          • If you already have content in your userChrome.css, the first line is probably already present and doesn't need to be repeated.

          • You need to ensure that either the menu bar or the title bar or both are visible. If both are missing, the tabs on bottom will overlap and obscure your bookmarks bar and the minimize/restore/close buttons won't be displayed.


          userChrome.css code fix for Private Browsing



          I found a slightly longer userChrome.css code in Reposition Tabs at bottom, directly above web page in Firefox 65.0?. It requires some modification by the user but it works for both normal and Private Browsing windows:



          @namespace url("<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="nofollow">http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>"); 

          /* only needed once
          */

          /* TABS: on bottom */
          #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
          #TabsToolbar {-moz-box-ordinal-group:1000!important}

          #TabsToolbar {
          position: absolute !important;
          bottom: 0 !important;
          width: 100vw !important;
          }

          #tabbrowser-tabs {
          width: 100vw !important;
          }
          #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

          /* TABS: height */
          :root {
          --tab-toolbar-navbar-overlap: 0px !important;
          --tab-min-height: 29px !important; /* 27 --- adjust to suit your needs */
          }
          :root #tabbrowser-tabs {
          --tab-min-height: 29px !important; /* 27 --- needs to be the same as above under :root */
          --tab-min-width: 80px !important;
          }

          #TabsToolbar {
          height: var(--tab-min-height) !important;
          margin-bottom: 1px !important;
          box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
          }

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

          /* drag space */
          .titlebar-spacer[type="pre-tabs"],
          .titlebar-spacer[type="post-tabs"] {
          width: 40px;
          }

          /* Override vertical shifts when moving a tab */
          #navigator-toolbox[movingtab] &gt; #titlebar &gt; #TabsToolbar {
          padding-bottom: unset !important;
          }
          #navigator-toolbox[movingtab] #tabbrowser-tabs {
          padding-bottom: unset !important;
          margin-bottom: unset !important;
          }
          #navigator-toolbox[movingtab] &gt; #nav-bar {
          margin-top: unset !important;
          }


          Note the px value of 29 in --tab-min-height: 29px !important works for me. You will need to adjust that for your system in both the lines in which that appears.



          Other cautions as described above for normal browsing windows still need to be noted.



          Firefox 65 with tabs below the address bar for normal and private windows:



          Firefox 65 with tabs below the address bar






          share|improve this answer

































            0














            This worked for me on Ubuntu 16.04 with Unity.



            I only needed to change the block for #navigator-toolbox #TabsToolbar (which was working before FF-65) to #titlebar.




            #nav-bar { /* Main Toolbar */
            -moz-box-ordinal-group: 1 !important;
            }
            #PersonalToolbar { /* Bookmarks Toolbar */
            -moz-box-ordinal-group: 2 !important;
            }
            #titlebar { /* Menu + Tab Bar */
            -moz-box-ordinal-group: 3 !important;
            }


            This may cause some other consequences for you, so follow the link to see the workarounds.






            share|improve this answer






















              protected by Community Feb 8 at 13:23



              Thank you for your interest in this question.
              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



              Would you like to answer one of these unanswered questions instead?














              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              5














              Users of previous versions of Firefox have found that if they had tabs below the address bar, the upgrade to version 65 broke that: tabs appear above the address bar.



              userChrome.css code fix for normal browsing (See further down for code that works for both normal and Private browsing windows.)



              For Firefox 65 users who prefer to have tabs appear below the address bar, the procedure is described in Forum Response - Tabs below the URL bar




              Firefox's style or appearance can be modified by creating a chrome folder inside your Firefox profile folder and then placing a userChrome.css file inside, that includes a custom style rule. The rules you put in the userChrome.css file will override the default styles in Firefox.




              with this caution:




              Custom style rules might not work every time because of other factors (such as incompatibility with other custom style rules) beyond the Mozilla community's control. Your custom style rule might also stop working each time a new Firefox release comes out.




              On my system, this is the path to userChrome.css:



              /home/dkb/.mozilla/firefox/prefix.suffix/chrome/userChrome.css


              Both chrome and userChrome.css are case-sensitive.



              The following lines needs to be placed in userChrome.css:



              @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

              /* TABS on bottom */
              #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
              #TabsToolbar {-moz-box-ordinal-group:1000!important}

              #TabsToolbar {
              position: absolute !important;
              bottom: 0 !important;
              width: 100vw !important;
              }
              #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
              padding-bottom: var(--tab-min-height) !important;
              }
              #tabbrowser-tabs {
              width: 100vw !important;
              }


              Save the file and restart Firefox.



              Notes:




              • If you already have content in your userChrome.css, the first line is probably already present and doesn't need to be repeated.

              • You need to ensure that either the menu bar or the title bar or both are visible. If both are missing, the tabs on bottom will overlap and obscure your bookmarks bar and the minimize/restore/close buttons won't be displayed.


              userChrome.css code fix for Private Browsing



              I found a slightly longer userChrome.css code in Reposition Tabs at bottom, directly above web page in Firefox 65.0?. It requires some modification by the user but it works for both normal and Private Browsing windows:



              @namespace url("<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="nofollow">http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>"); 

              /* only needed once
              */

              /* TABS: on bottom */
              #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
              #TabsToolbar {-moz-box-ordinal-group:1000!important}

              #TabsToolbar {
              position: absolute !important;
              bottom: 0 !important;
              width: 100vw !important;
              }

              #tabbrowser-tabs {
              width: 100vw !important;
              }
              #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

              /* TABS: height */
              :root {
              --tab-toolbar-navbar-overlap: 0px !important;
              --tab-min-height: 29px !important; /* 27 --- adjust to suit your needs */
              }
              :root #tabbrowser-tabs {
              --tab-min-height: 29px !important; /* 27 --- needs to be the same as above under :root */
              --tab-min-width: 80px !important;
              }

              #TabsToolbar {
              height: var(--tab-min-height) !important;
              margin-bottom: 1px !important;
              box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
              }

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

              /* drag space */
              .titlebar-spacer[type="pre-tabs"],
              .titlebar-spacer[type="post-tabs"] {
              width: 40px;
              }

              /* Override vertical shifts when moving a tab */
              #navigator-toolbox[movingtab] &gt; #titlebar &gt; #TabsToolbar {
              padding-bottom: unset !important;
              }
              #navigator-toolbox[movingtab] #tabbrowser-tabs {
              padding-bottom: unset !important;
              margin-bottom: unset !important;
              }
              #navigator-toolbox[movingtab] &gt; #nav-bar {
              margin-top: unset !important;
              }


              Note the px value of 29 in --tab-min-height: 29px !important works for me. You will need to adjust that for your system in both the lines in which that appears.



              Other cautions as described above for normal browsing windows still need to be noted.



              Firefox 65 with tabs below the address bar for normal and private windows:



              Firefox 65 with tabs below the address bar






              share|improve this answer






























                5














                Users of previous versions of Firefox have found that if they had tabs below the address bar, the upgrade to version 65 broke that: tabs appear above the address bar.



                userChrome.css code fix for normal browsing (See further down for code that works for both normal and Private browsing windows.)



                For Firefox 65 users who prefer to have tabs appear below the address bar, the procedure is described in Forum Response - Tabs below the URL bar




                Firefox's style or appearance can be modified by creating a chrome folder inside your Firefox profile folder and then placing a userChrome.css file inside, that includes a custom style rule. The rules you put in the userChrome.css file will override the default styles in Firefox.




                with this caution:




                Custom style rules might not work every time because of other factors (such as incompatibility with other custom style rules) beyond the Mozilla community's control. Your custom style rule might also stop working each time a new Firefox release comes out.




                On my system, this is the path to userChrome.css:



                /home/dkb/.mozilla/firefox/prefix.suffix/chrome/userChrome.css


                Both chrome and userChrome.css are case-sensitive.



                The following lines needs to be placed in userChrome.css:



                @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

                /* TABS on bottom */
                #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                #TabsToolbar {-moz-box-ordinal-group:1000!important}

                #TabsToolbar {
                position: absolute !important;
                bottom: 0 !important;
                width: 100vw !important;
                }
                #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
                padding-bottom: var(--tab-min-height) !important;
                }
                #tabbrowser-tabs {
                width: 100vw !important;
                }


                Save the file and restart Firefox.



                Notes:




                • If you already have content in your userChrome.css, the first line is probably already present and doesn't need to be repeated.

                • You need to ensure that either the menu bar or the title bar or both are visible. If both are missing, the tabs on bottom will overlap and obscure your bookmarks bar and the minimize/restore/close buttons won't be displayed.


                userChrome.css code fix for Private Browsing



                I found a slightly longer userChrome.css code in Reposition Tabs at bottom, directly above web page in Firefox 65.0?. It requires some modification by the user but it works for both normal and Private Browsing windows:



                @namespace url("<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="nofollow">http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>"); 

                /* only needed once
                */

                /* TABS: on bottom */
                #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                #TabsToolbar {-moz-box-ordinal-group:1000!important}

                #TabsToolbar {
                position: absolute !important;
                bottom: 0 !important;
                width: 100vw !important;
                }

                #tabbrowser-tabs {
                width: 100vw !important;
                }
                #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

                /* TABS: height */
                :root {
                --tab-toolbar-navbar-overlap: 0px !important;
                --tab-min-height: 29px !important; /* 27 --- adjust to suit your needs */
                }
                :root #tabbrowser-tabs {
                --tab-min-height: 29px !important; /* 27 --- needs to be the same as above under :root */
                --tab-min-width: 80px !important;
                }

                #TabsToolbar {
                height: var(--tab-min-height) !important;
                margin-bottom: 1px !important;
                box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
                }

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

                /* drag space */
                .titlebar-spacer[type="pre-tabs"],
                .titlebar-spacer[type="post-tabs"] {
                width: 40px;
                }

                /* Override vertical shifts when moving a tab */
                #navigator-toolbox[movingtab] &gt; #titlebar &gt; #TabsToolbar {
                padding-bottom: unset !important;
                }
                #navigator-toolbox[movingtab] #tabbrowser-tabs {
                padding-bottom: unset !important;
                margin-bottom: unset !important;
                }
                #navigator-toolbox[movingtab] &gt; #nav-bar {
                margin-top: unset !important;
                }


                Note the px value of 29 in --tab-min-height: 29px !important works for me. You will need to adjust that for your system in both the lines in which that appears.



                Other cautions as described above for normal browsing windows still need to be noted.



                Firefox 65 with tabs below the address bar for normal and private windows:



                Firefox 65 with tabs below the address bar






                share|improve this answer




























                  5












                  5








                  5







                  Users of previous versions of Firefox have found that if they had tabs below the address bar, the upgrade to version 65 broke that: tabs appear above the address bar.



                  userChrome.css code fix for normal browsing (See further down for code that works for both normal and Private browsing windows.)



                  For Firefox 65 users who prefer to have tabs appear below the address bar, the procedure is described in Forum Response - Tabs below the URL bar




                  Firefox's style or appearance can be modified by creating a chrome folder inside your Firefox profile folder and then placing a userChrome.css file inside, that includes a custom style rule. The rules you put in the userChrome.css file will override the default styles in Firefox.




                  with this caution:




                  Custom style rules might not work every time because of other factors (such as incompatibility with other custom style rules) beyond the Mozilla community's control. Your custom style rule might also stop working each time a new Firefox release comes out.




                  On my system, this is the path to userChrome.css:



                  /home/dkb/.mozilla/firefox/prefix.suffix/chrome/userChrome.css


                  Both chrome and userChrome.css are case-sensitive.



                  The following lines needs to be placed in userChrome.css:



                  @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

                  /* TABS on bottom */
                  #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                  #TabsToolbar {-moz-box-ordinal-group:1000!important}

                  #TabsToolbar {
                  position: absolute !important;
                  bottom: 0 !important;
                  width: 100vw !important;
                  }
                  #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
                  padding-bottom: var(--tab-min-height) !important;
                  }
                  #tabbrowser-tabs {
                  width: 100vw !important;
                  }


                  Save the file and restart Firefox.



                  Notes:




                  • If you already have content in your userChrome.css, the first line is probably already present and doesn't need to be repeated.

                  • You need to ensure that either the menu bar or the title bar or both are visible. If both are missing, the tabs on bottom will overlap and obscure your bookmarks bar and the minimize/restore/close buttons won't be displayed.


                  userChrome.css code fix for Private Browsing



                  I found a slightly longer userChrome.css code in Reposition Tabs at bottom, directly above web page in Firefox 65.0?. It requires some modification by the user but it works for both normal and Private Browsing windows:



                  @namespace url("<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="nofollow">http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>"); 

                  /* only needed once
                  */

                  /* TABS: on bottom */
                  #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                  #TabsToolbar {-moz-box-ordinal-group:1000!important}

                  #TabsToolbar {
                  position: absolute !important;
                  bottom: 0 !important;
                  width: 100vw !important;
                  }

                  #tabbrowser-tabs {
                  width: 100vw !important;
                  }
                  #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

                  /* TABS: height */
                  :root {
                  --tab-toolbar-navbar-overlap: 0px !important;
                  --tab-min-height: 29px !important; /* 27 --- adjust to suit your needs */
                  }
                  :root #tabbrowser-tabs {
                  --tab-min-height: 29px !important; /* 27 --- needs to be the same as above under :root */
                  --tab-min-width: 80px !important;
                  }

                  #TabsToolbar {
                  height: var(--tab-min-height) !important;
                  margin-bottom: 1px !important;
                  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
                  }

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

                  /* drag space */
                  .titlebar-spacer[type="pre-tabs"],
                  .titlebar-spacer[type="post-tabs"] {
                  width: 40px;
                  }

                  /* Override vertical shifts when moving a tab */
                  #navigator-toolbox[movingtab] &gt; #titlebar &gt; #TabsToolbar {
                  padding-bottom: unset !important;
                  }
                  #navigator-toolbox[movingtab] #tabbrowser-tabs {
                  padding-bottom: unset !important;
                  margin-bottom: unset !important;
                  }
                  #navigator-toolbox[movingtab] &gt; #nav-bar {
                  margin-top: unset !important;
                  }


                  Note the px value of 29 in --tab-min-height: 29px !important works for me. You will need to adjust that for your system in both the lines in which that appears.



                  Other cautions as described above for normal browsing windows still need to be noted.



                  Firefox 65 with tabs below the address bar for normal and private windows:



                  Firefox 65 with tabs below the address bar






                  share|improve this answer















                  Users of previous versions of Firefox have found that if they had tabs below the address bar, the upgrade to version 65 broke that: tabs appear above the address bar.



                  userChrome.css code fix for normal browsing (See further down for code that works for both normal and Private browsing windows.)



                  For Firefox 65 users who prefer to have tabs appear below the address bar, the procedure is described in Forum Response - Tabs below the URL bar




                  Firefox's style or appearance can be modified by creating a chrome folder inside your Firefox profile folder and then placing a userChrome.css file inside, that includes a custom style rule. The rules you put in the userChrome.css file will override the default styles in Firefox.




                  with this caution:




                  Custom style rules might not work every time because of other factors (such as incompatibility with other custom style rules) beyond the Mozilla community's control. Your custom style rule might also stop working each time a new Firefox release comes out.




                  On my system, this is the path to userChrome.css:



                  /home/dkb/.mozilla/firefox/prefix.suffix/chrome/userChrome.css


                  Both chrome and userChrome.css are case-sensitive.



                  The following lines needs to be placed in userChrome.css:



                  @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

                  /* TABS on bottom */
                  #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                  #TabsToolbar {-moz-box-ordinal-group:1000!important}

                  #TabsToolbar {
                  position: absolute !important;
                  bottom: 0 !important;
                  width: 100vw !important;
                  }
                  #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
                  padding-bottom: var(--tab-min-height) !important;
                  }
                  #tabbrowser-tabs {
                  width: 100vw !important;
                  }


                  Save the file and restart Firefox.



                  Notes:




                  • If you already have content in your userChrome.css, the first line is probably already present and doesn't need to be repeated.

                  • You need to ensure that either the menu bar or the title bar or both are visible. If both are missing, the tabs on bottom will overlap and obscure your bookmarks bar and the minimize/restore/close buttons won't be displayed.


                  userChrome.css code fix for Private Browsing



                  I found a slightly longer userChrome.css code in Reposition Tabs at bottom, directly above web page in Firefox 65.0?. It requires some modification by the user but it works for both normal and Private Browsing windows:



                  @namespace url("<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" rel="nofollow">http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>"); 

                  /* only needed once
                  */

                  /* TABS: on bottom */
                  #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
                  #TabsToolbar {-moz-box-ordinal-group:1000!important}

                  #TabsToolbar {
                  position: absolute !important;
                  bottom: 0 !important;
                  width: 100vw !important;
                  }

                  #tabbrowser-tabs {
                  width: 100vw !important;
                  }
                  #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

                  /* TABS: height */
                  :root {
                  --tab-toolbar-navbar-overlap: 0px !important;
                  --tab-min-height: 29px !important; /* 27 --- adjust to suit your needs */
                  }
                  :root #tabbrowser-tabs {
                  --tab-min-height: 29px !important; /* 27 --- needs to be the same as above under :root */
                  --tab-min-width: 80px !important;
                  }

                  #TabsToolbar {
                  height: var(--tab-min-height) !important;
                  margin-bottom: 1px !important;
                  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
                  }

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

                  /* drag space */
                  .titlebar-spacer[type="pre-tabs"],
                  .titlebar-spacer[type="post-tabs"] {
                  width: 40px;
                  }

                  /* Override vertical shifts when moving a tab */
                  #navigator-toolbox[movingtab] &gt; #titlebar &gt; #TabsToolbar {
                  padding-bottom: unset !important;
                  }
                  #navigator-toolbox[movingtab] #tabbrowser-tabs {
                  padding-bottom: unset !important;
                  margin-bottom: unset !important;
                  }
                  #navigator-toolbox[movingtab] &gt; #nav-bar {
                  margin-top: unset !important;
                  }


                  Note the px value of 29 in --tab-min-height: 29px !important works for me. You will need to adjust that for your system in both the lines in which that appears.



                  Other cautions as described above for normal browsing windows still need to be noted.



                  Firefox 65 with tabs below the address bar for normal and private windows:



                  Firefox 65 with tabs below the address bar







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Feb 6 at 9:31

























                  answered Feb 2 at 4:36









                  DK BoseDK Bose

                  14.8k124288




                  14.8k124288

























                      0














                      This worked for me on Ubuntu 16.04 with Unity.



                      I only needed to change the block for #navigator-toolbox #TabsToolbar (which was working before FF-65) to #titlebar.




                      #nav-bar { /* Main Toolbar */
                      -moz-box-ordinal-group: 1 !important;
                      }
                      #PersonalToolbar { /* Bookmarks Toolbar */
                      -moz-box-ordinal-group: 2 !important;
                      }
                      #titlebar { /* Menu + Tab Bar */
                      -moz-box-ordinal-group: 3 !important;
                      }


                      This may cause some other consequences for you, so follow the link to see the workarounds.






                      share|improve this answer




























                        0














                        This worked for me on Ubuntu 16.04 with Unity.



                        I only needed to change the block for #navigator-toolbox #TabsToolbar (which was working before FF-65) to #titlebar.




                        #nav-bar { /* Main Toolbar */
                        -moz-box-ordinal-group: 1 !important;
                        }
                        #PersonalToolbar { /* Bookmarks Toolbar */
                        -moz-box-ordinal-group: 2 !important;
                        }
                        #titlebar { /* Menu + Tab Bar */
                        -moz-box-ordinal-group: 3 !important;
                        }


                        This may cause some other consequences for you, so follow the link to see the workarounds.






                        share|improve this answer


























                          0












                          0








                          0







                          This worked for me on Ubuntu 16.04 with Unity.



                          I only needed to change the block for #navigator-toolbox #TabsToolbar (which was working before FF-65) to #titlebar.




                          #nav-bar { /* Main Toolbar */
                          -moz-box-ordinal-group: 1 !important;
                          }
                          #PersonalToolbar { /* Bookmarks Toolbar */
                          -moz-box-ordinal-group: 2 !important;
                          }
                          #titlebar { /* Menu + Tab Bar */
                          -moz-box-ordinal-group: 3 !important;
                          }


                          This may cause some other consequences for you, so follow the link to see the workarounds.






                          share|improve this answer













                          This worked for me on Ubuntu 16.04 with Unity.



                          I only needed to change the block for #navigator-toolbox #TabsToolbar (which was working before FF-65) to #titlebar.




                          #nav-bar { /* Main Toolbar */
                          -moz-box-ordinal-group: 1 !important;
                          }
                          #PersonalToolbar { /* Bookmarks Toolbar */
                          -moz-box-ordinal-group: 2 !important;
                          }
                          #titlebar { /* Menu + Tab Bar */
                          -moz-box-ordinal-group: 3 !important;
                          }


                          This may cause some other consequences for you, so follow the link to see the workarounds.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 7 at 9:30









                          AliNâAliNâ

                          4,35032036




                          4,35032036

















                              protected by Community Feb 8 at 13:23



                              Thank you for your interest in this question.
                              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                              Would you like to answer one of these unanswered questions instead?



                              Popular posts from this blog

                              How to send String Array data to Server using php in android

                              Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                              Is anime1.com a legal site for watching anime?