Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

How to resize the Bookmarks Toolbar

more options

I would like to make my Bookmarks Toolbar about 20-40% bigger with larger bookmark icons and text. How can I do this?

I would like to make my Bookmarks Toolbar about 20-40% bigger with larger bookmark icons and text. How can I do this?

Vybrané riešenie

You can experiment with code like this in the userChrome.css file or with the Stylish extension if you prefer.

Add code to the userChrome.css file below the default @namespace line.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#personal-bookmarks .bookmark-item > .toolbarbutton-text { font-size:12pt !important; font-weight:bold; }
#personal-bookmarks .bookmark-item > .toolbarbutton-icon { height:24px !important; width:24px !important; }

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


Čítať túto odpoveď v kontexte 👍 2

Všetky odpovede (8)

more options

If you aren't able to find an add-on for this, someone might be able to help with custom style rules. Applying those is a little more complicated, but do-able.

more options

The only addons or guides I can find are for multi-row toolbars or to just increase font size.

more options

This style rule will enlarge the text by 40% and the icons by 25%:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar .bookmark-item {
  font-size:140% !important;
}
.bookmark-item:not(#bookmarks-menu-button) > .toolbarbutton-icon {
  width: 20px !important; /* 25% over 16px default */
  height: 20px !important; /* 25% over 16px default */
}

I created a blank rule using the Stylish extension then pasted the above in. Screen shot attached showing before and after.

more options

Vybrané riešenie

You can experiment with code like this in the userChrome.css file or with the Stylish extension if you prefer.

Add code to the userChrome.css file below the default @namespace line.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#personal-bookmarks .bookmark-item > .toolbarbutton-text { font-size:12pt !important; font-weight:bold; }
#personal-bookmarks .bookmark-item > .toolbarbutton-icon { height:24px !important; width:24px !important; }

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


Upravil(a) cor-el dňa

more options

Thanks. The only problem left is the font of bookmarks inside a folder is strangely larger than the font of the bookmarks (and folders) on the toolbar.

Also what is the namespace url for?

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

  1. PersonalToolbar .bookmark-item {
 font-size:120% !important;

} .bookmark-item:not(#bookmarks-menu-button) > .toolbarbutton-icon {

 width: 22px !important;
 height: 22px !important;
 }

Upravil(a) Joshopolis dňa

more options

The code from JScher2000 also affects the code for the folders as well as it uses #PersonalToolbar .bookmark-item

The code that I posted should only work for the Bookmarks Toolbar and not within folders as it uses ".bookmark-item > .toolbarbutton-text" in the selector.

more options

I see. Works perfectly, thanks guys.

more options

Hi Joshopolis, I didn't notice that, but it's due to using a % measurement. As you drill down deeper and deeper into the hierarchy, it seems to multiply. Using a fixed measurement will make the text size in the folders the same as the bar.

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar .bookmark-item {
  font-size:18px !important;
}
.bookmark-item:not(#bookmarks-menu-button) > .toolbarbutton-icon {
  width: 20px !important; /* 25% over 16px default */
  height: 20px !important; /* 25% over 16px default */
}

Upravil(a) jscher2000 - Support Volunteer dňa