Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

How do I remove an icon from the bookmarks in my toolbar?

  • 4 respostas
  • 1 tem este problema
  • 1 visualização
  • Última resposta por cor-el

more options

When I refreshed Firefox by resetting it to the default, my bookmarks in the bookmark toolbar re-appeared with icons. I had removed them previously to shorten the space each bookmark took up in the toolbar. Now all my toolbar bookmarks do not fit on the toolbar. I want to go back and remove the icons, but none of the customizations, properties, or options have a way of doing it.

When I refreshed Firefox by resetting it to the default, my bookmarks in the bookmark toolbar re-appeared with icons. I had removed them previously to shorten the space each bookmark took up in the toolbar. Now all my toolbar bookmarks do not fit on the toolbar. I want to go back and remove the icons, but none of the customizations, properties, or options have a way of doing it.

Solução escolhida

This can be done, via the Delete Bookmark Icons addon for Firefox.

Ler esta resposta no contexto 👍 1

Todas as respostas (4)

more options

Solução escolhida

This can be done, via the Delete Bookmark Icons addon for Firefox.

more options

What if I want all the icons and none of the words, in the Bookmarks Toolbar? Can i do that? Thanks! -Sid

more options

Right click on the particular bookmark on the toolbar, then click on Properties. You can abbreviate the Name right down to nothing. You can also put similar bookmarks into Folders with appropriate names on the Bookmarks Toolbar. Again, right clicking on the Bar will offer New Folder.

Not everyone seems to know that the overflow of bookmarks goes down the right side of the page, accessed via the chevrons(double arrowhead) at the end of the toolbar.

more options

Note that you can use code in userChrome.css to hide either name or icon of bookmarks on the Bookmarks Toolbar.

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 in userChrome.css */

/* use one of these to hide the icons or the label text */
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {display:none!important}
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-text {display:none!important}

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