Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

FF9 - can i hide window control buttons in titlebar (min, max, close) with userchrome.css?

  • 5 απαντήσεις
  • 6 έχουν αυτό το πρόβλημα
  • 72 προβολές
  • Τελευταία απάντηση από kamagi

more options

I use FF9. In userscript.css i hide titlebar and orange app button, but window control buttons still visible! I just can`t find working script.

I dont need min-max-close button and wont to hide it without extension if possible.

Here is screenshort: http://s018.radikal.ru/i522/1201/50/f6a6ea445507.jpg

I use FF9. In userscript.css i hide titlebar and orange app button, but window control buttons still visible! I just can`t find working script. I dont need min-max-close button and wont to hide it without extension if possible. Here is screenshort: http://s018.radikal.ru/i522/1201/50/f6a6ea445507.jpg

Επιλεγμένη λύση

If you are using full screen mode and have those buttons on the Navigation Toolbar then you need to use this code.


#window-controls { display:none!important; }
Ανάγνωση απάντησης σε πλαίσιο 👍 0

Όλες οι απαντήσεις (5)

more options

Try this code in userChrome.css below the default @namespace line.

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


*http://www.mozilla.org/en-US/firefox/channel/

#titlebar-buttonbox { display:none!important; }
more options

I make mistake in my first message - i use file userChrome.css, not userScript.

Script does not work. And this too:

#titlebar-max,#titlebar-min,#titlebar-close {display: none; }

Τροποποιήθηκε στις από το χρήστη kamagi

more options

Επιλεγμένη λύση

If you are using full screen mode and have those buttons on the Navigation Toolbar then you need to use this code.


#window-controls { display:none!important; }
more options

Yes, in full screen mode it`s work, thank you. Did you have any sollution for normal mode?

more options

Answer was in uncheck "Tabs on top" and all scripts turn on! :)