This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

I do not like the new version(57), how can I get rid of the tabs at the top of the page and just use tree tabs which just duplicate the tabs at the top

  • 1 antwoord
  • 2 hierdie probleem
  • 2 views
  • Laaste antwoord deur Moses

more options

I do not care for the new version. I intensely dislike tabs at the top of the page. I use tree style tabs, so I happily clicked the tree tab button and low and behold I now have two sets of tabs. I only want the tree style tabs I wish to be rid of the tabs at the top of the page .I would be happier going back to the last version that I had this morning.

I do not care for the new version. I intensely dislike tabs at the top of the page. I use tree style tabs, so I happily clicked the tree tab button and low and behold I now have two sets of tabs. I only want the tree style tabs I wish to be rid of the tabs at the top of the page .I would be happier going back to the last version that I had this morning.

All Replies (1)

more options

You need to create a userChrome.css file before you can move the tabs below the address bar, here's a site that shows you how.

After doing that, put this into 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;
   }