Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

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;
   }