Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

How can I completely remove the bar above the URL bar? I don't need to see horizontal tabs or the Close/Minimize/Restore buttons.

  • 2 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par tailonfire

more options

How can I completely remove the bar above the URL bar? I don't need to see horizontal tabs or the Close/Minimize/Restore buttons.

I can close/minimize/restore by right-clicking the Firefox box on my Linux Mint's bottom panel.


My userChrome.css looks like this:

/* Hide horizontal tabs at the top of the window */
#tabbrowser-tabs {
  visibility: collapse !important;
}

#titlebar {
  visibility: collapse;
}


#tabbrowser-tabs { visibility: hidden !important; }
tab { display: none !important; }

#sidebar-header {
  visibility: collapse !important;
}
How can I completely remove the bar above the URL bar? I don't need to see horizontal tabs or the Close/Minimize/Restore buttons. I can close/minimize/restore by right-clicking the Firefox box on my Linux Mint's bottom panel. My userChrome.css looks like this: <pre><nowiki>/* Hide horizontal tabs at the top of the window */ #tabbrowser-tabs { visibility: collapse !important; } #titlebar { visibility: collapse; } #tabbrowser-tabs { visibility: hidden !important; } tab { display: none !important; } #sidebar-header { visibility: collapse !important; }</nowiki></pre>
Captures d’écran jointes

Modifié le par cor-el

Solution choisie

This line of code does the trick!

#titlebar {
display: none !important;
}
Lire cette réponse dans son contexte 👍 0

Toutes les réponses (2)

more options

Hi tailonfire, please use <pre> tags around your code so the forum software doesn't think you are giving it formatting instructions.

My userChrome.css looks like this:
/* Hide horizontal tabs at the top of the window */
#tabbrowser-tabs {
  visibility: collapse !important;
}

#titlebar {
  visibility: collapse;
}

/* visibility: collapse is better, so remove this */
#tabbrowser-tabs { visibility: hidden !important; }

tab { display: none !important; }

#sidebar-header {
  visibility: collapse !important;
}

Perhaps you also need to suppress the New tab button and the All tabs list button. I don't know about the standard OS buttons. Linux works differently than Windows.

If you don't get the full recipe here, try:

https://www.reddit.com/r/FirefoxCSS/

more options

Solution choisie

This line of code does the trick!

#titlebar {
display: none !important;
}

Modifié le par tailonfire