Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Saznaj više

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 odgovor
  • 2 imaju ovaj problem
  • 2 prikaza
  • Posljednji odgovor od 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.

Svi odgovori (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;
   }