Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 6 replies
  • 1 has this problem
  • 59 views
  • Last reply by 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?

Chosen solution

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;
}
Read this answer in context 👍 0

All Replies (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

Modified by 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

Chosen Solution

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;
}

Modified by cor-el