Този сайт ще има ограничена функционалност, докато се извършва тече неговата поддръжка. Ако дадена статия не може реши проблема ви и искате да зададете въпрос, нашата общност е готова да ви помогне на @firefox в Twitter и /r/firefox в Reddit.

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

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 отговор
  • 2 имат този проблем
  • 2 изгледи
  • Последен отговор от 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.

Всички отговори (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;
   }