Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Tabs toolbar

  • 9 risposte
  • 1 ha questo problema
  • 97 visualizzazioni
  • Ultima risposta di wd0d

more options

My tabs toolbar does not extend across the entire laptop screen. Looks like it stops halfway, regardless of how many tabs are open. As tab number increases individual tab space narrows. How can I increase width to occupy full screen?

My tabs toolbar does not extend across the entire laptop screen. Looks like it stops halfway, regardless of how many tabs are open. As tab number increases individual tab space narrows. How can I increase width to occupy full screen?

Soluzione scelta

solved my own problem. had used userchrome to get multirow bookmarks. added a css to get tabs at bottom. problem with this file. deleted last portion this file. viola problem solved. could not determine what was in deleted portion that reduced width of toolbar.

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (9)

more options

Hello,

In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see How do I create a screenshot of my problem?

Once you've done this, attach the saved screenshot file to your forum post by clicking the Browse... button below the Post your reply box. This will help us to visualize the problem.

Thank you!


Start Firefox using Troubleshoot(Safe) Mode {web link}

A small dialog should appear. Click Start In Troubleshoot(Safe) Mode (not Refresh). Is the problem still there?

more options

It is possible to drag other buttons and controls onto the tabs toolbar, stealing space from the tabs. Could you double-check in the Customize panel whether a flexible spacer or anything else that doesn't need to be there is using space on your Tabs bar (I do recommend keeping the New Tab + button and the List All Tabs button).

More info on Customize: Customize Firefox controls, buttons and toolbars

more options

Are you possibly using code in userChrome.css to style the Firefox user interface ?

more options

Soluzione scelta

solved my own problem. had used userchrome to get multirow bookmarks. added a css to get tabs at bottom. problem with this file. deleted last portion this file. viola problem solved. could not determine what was in deleted portion that reduced width of toolbar.

more options

That was very good work. Well Done.

more options

LOOK HERE FOR ANSWER: https://support.mozilla.org/en-US/questions/1365847 Make sure you have width:100vw; property rules.

  1. TabsToolbar {
 display: block !important;
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;

}

  1. tabbrowser-tabs {
 width: 100vw !important;

Modificato da Scott il

more options

I think that 100vw is the percentage of the width(?), hence very important is right.

more options
more options

Well, I deduced/inferred that 100vw vs 50vw was a percentage, the linked url confirms it. Thanks for finalizing the solution. The Ts are crossed and the Is are dotted. QED