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

is it possible to move the title bar under the toolbar?

  • 6 réponses
  • 1 a ce problème
  • 56 vues
  • Dernière réponse par bomimok569

more options

if possible: how to move the title to the center in the title bar?

if possible: how to move the title to the center in the title bar?

Solution choisie

I will leave this message for those who are faced with a similar need:

"you can place title in toolbar or in bookmarks menu or in tabbar - https://imgur.com/sXZrBMb

here is userchrome.js for that ( here are versions for many versions of firefox) : https://github.com/tkhquang/userChrome.js/commits/master/titlebar_movable.uc.js

to activate it you need to enable userchrome.js first : https://github.com/Aris-t2/CustomJSforFx

if you want use this in bookmarks menu how i use: https://ibb.co/StWsRW3 you need to remove bookmarks tool in the dashboard and add blocks with spaces : https://ibb.co/BZypwhj

also with the help of userChrome.css you can change the bookmark menu height, font size :

/* Bookmarks Toolbar */
#PersonalToolbar,
#PersonalToolbar menuitem,
#PersonalToolbar menu {
 font-size: 14.9px !important;
}

#PersonalToolbar {
 height: 25.5px !important;
}
Lire cette réponse dans son contexte 👍 0

Toutes les réponses (6)

more options

and can the title bar be placed above the toolbar?

more options

I'm not quite clear on your configuration. Is this the current order (top to bottom):

  • Optional Title Bar
  • Tabs bar
  • Main Toolbar

And what would be the desired order?

Firefox doesn't have a built-in method to center the title text on the Title Bar, but it sounds like something that could be done using custom style rules in a userChrome.css file (an optional file you can set Firefox to look for at startup).

more options

jscher2000 said

I'm not quite clear on your configuration. Is this the current order (top to bottom):
  • Optional Title Bar
  • Tabs bar
  • Main Toolbar
And what would be the desired order? Firefox doesn't have a built-in method to center the title text on the Title Bar, but it sounds like something that could be done using custom style rules in a userChrome.css file (an optional file you can set Firefox to look for at startup).

Hi) that's what i mean: https://prnt.sc/uu3w2e . understand that this is done with the help userChrome.css , but I do not understand this at all. I really need help with this

more options

12244

Modifié le par bomimok569

more options

It's funny, your screenshot shows the site I would recommend for this question. However, another support volunteer might have an idea whether this is possible.

more options

Solution choisie

I will leave this message for those who are faced with a similar need:

"you can place title in toolbar or in bookmarks menu or in tabbar - https://imgur.com/sXZrBMb

here is userchrome.js for that ( here are versions for many versions of firefox) : https://github.com/tkhquang/userChrome.js/commits/master/titlebar_movable.uc.js

to activate it you need to enable userchrome.js first : https://github.com/Aris-t2/CustomJSforFx

if you want use this in bookmarks menu how i use: https://ibb.co/StWsRW3 you need to remove bookmarks tool in the dashboard and add blocks with spaces : https://ibb.co/BZypwhj

also with the help of userChrome.css you can change the bookmark menu height, font size :

/* Bookmarks Toolbar */
#PersonalToolbar,
#PersonalToolbar menuitem,
#PersonalToolbar menu {
 font-size: 14.9px !important;
}

#PersonalToolbar {
 height: 25.5px !important;
}

Modifié le par cor-el