Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

How do I edit the maximum width of the bookmarks to see more characters?

  • 5 respostas
  • 6 têm este problema
  • 68 visualizações
  • Última resposta de MourneProof

more options

I have many bookmarks with more characters than FF can display. So I want to make the width of the Bookmark menus wider.

I have many bookmarks with more characters than FF can display. So I want to make the width of the Bookmark menus wider.

Solução escolhida

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
Ler esta resposta 👍 0

Todas as respostas (5)

more options

You can set the max-width to none or specify a maximum (400px) with code in userChrome.css in the chrome folder in the Firefox Profile Folder to see more characters.
See http://kb.mozillazine.org/Editing_configuration

Add this code to userChrome.css below the @namespace line.

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

#bookmarksMenuPopup .bookmark-item { max-width: none !important; }

more options

Hi cor-el,

thanks for you reply. I tried your suggestion, but I did not recognized a huge change. Is 400px really the maximum? For now I'm using a workaround to open "chrome://browser/content/bookmarks/bookmarksPanel.xul" in a new tab, but this is not as comfortable as I wish.

more options

Hi again,

I recognized that the solution from cor-el worked fine for the Bookmark-Menu but not for the bookmark-toolbar.

Does anybody know which item to modify to apply the width to the bookmark-toolbar?

more options

Solução escolhida

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
more options

Hi cor-el

thank you very much for you help. It works fine and now FF really matches my needs!!!