We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

How do I turn off tab scroll so I can see all my tabs on the bar?

  • 3 odgovori
  • 7 ima to težavo
  • 4 ogledi
  • Zadnji odgovor od cor-el

more options

Tab scrolling is annoying and unnecessary. I don't want to put an add on to disable tab scroll and I don't want to have to press view all tabs to see what tabs I have queued.

Tab scrolling is annoying and unnecessary. I don't want to put an add on to disable tab scroll and I don't want to have to press view all tabs to see what tabs I have queued.

Vsi odgovori (3)

more options

You can look at this extension:

more options

No Add-ons please

more options

Do you want to decrease the minimum size of tabs to have more tabs fit?

You can also do this with code in userChrome.css if you do not want to ue an extension.

Add code to the userChrome.css file below the default @namespace line.

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

.tabbrowser-tab[fadein]:not([pinned]) { min-width: 100px !important; max-width: 250px !important; }

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.