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.

Anyone know how to put the tabs on bottom in newest firefox 72.0.1?

  • 7 risposte
  • 1 ha questo problema
  • 14 visualizzazioni
  • Ultima risposta di Peter Humphries

more options

The old chrome file puts the tabs over the bookmark list and hide them. Anyone know how to fix this?

The old chrome file puts the tabs over the bookmark list and hide them. Anyone know how to fix this?

Soluzione scelta

If you already have code in userChrome.css for "Tabs on Bottom," just remove the namespace line at the beginning of the file, save it and restart Firefox.

If you have other code in userChrome.css, you can keep the namespace line but move your "Tabs on Bottom" code above it (or to a separate file and include that file before the namespace line).

Leggere questa risposta nel contesto 👍 1

Tutte le risposte (7)

more options

This repository always contains updated files: https://github.com/Aris-t2/CustomCSSforFx

more options

TyDraniu said

This repository always contains updated files: https://github.com/Aris-t2/CustomCSSforFx

I can't find the update for 72. Can you link please?

more options
more options

TyDraniu said

https://github.com/Aris-t2/CustomCSSforFx/blob/master/classic/userChrome.css#L352

Thank you. I don't think I can sort this one out. That's too much text and I just don't know what to use and what to skip. I'll just leave it as is and learn to live with tabs on top. Thanks again for trying to help me.

more options

Soluzione scelta

If you already have code in userChrome.css for "Tabs on Bottom," just remove the namespace line at the beginning of the file, save it and restart Firefox.

If you have other code in userChrome.css, you can keep the namespace line but move your "Tabs on Bottom" code above it (or to a separate file and include that file before the namespace line).

Modificato da Peter Humphries il

more options

Peter Humphries said

If you already have code in userChrome.css to for "Tabs on Bottom," just remove the namespace line at the beginning of the file, save it and restart Firefox. If you have other code in userChrome.css, you can keep the namespace line but move your "Tabs on Bottom" code above it (or to a separate file and include that file before the namespace line).

Thank you! I did your first suggestion and that worked. I'm not computer savvy when it comes to coding so pointing out what to change helps me. Thanks again.

more options

Thanks!

For those interested in the why of it, Firefox is moving from XUL to HTML a little bit at a time; this piecemeal progression is why our Tabs on Bottom CSS keeps breaking. The reason given for abandoning XUL is that XUL cannot be made modular (that is to say, anything using XUL has access to the entire system).