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”.

Learn More

Firefox 23. Bookmark Icons very small. Can I make them larger?

  • 1 odpoveď
  • 3 majú tento problém
  • 14 zobrazení
  • Posledná odpoveď od cor-el

more options

icons on bookmark toolbar are very small and the toolbar contains about 50 icons. I only want to see the top 10 or so that i use most often. Words instead of icons would do nicely. Thanks

icons on bookmark toolbar are very small and the toolbar contains about 50 icons. I only want to see the top 10 or so that i use most often. Words instead of icons would do nicely. Thanks

Vybrané riešenie

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

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

Use one of the two versions to hide all icons or keep icons for bookmark folders.

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

/* hide bookmark icons on the Bookmarks Toolbar - show folder icons */
#personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-icon {
display:none!important;
}

/* hide all icon on the Bookmarks Toolbar */
#personal-bookmarks .bookmark-item .toolbarbutton-icon{
display:none!important;
}
Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (1)

more options

Vybrané riešenie

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

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

Use one of the two versions to hide all icons or keep icons for bookmark folders.

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

/* hide bookmark icons on the Bookmarks Toolbar - show folder icons */
#personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-icon {
display:none!important;
}

/* hide all icon on the Bookmarks Toolbar */
#personal-bookmarks .bookmark-item .toolbarbutton-icon{
display:none!important;
}