Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

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 to decrease width of the dropdown bookmark panel (FF 11)?

  • 2 respostas
  • 1 tem este problema
  • 1 exibição
  • Última resposta de cor-el

more options

How to decrease width of the dropdown bookmark panel (FF 11)?

This panel is too wide and covers too much space in underlying windows. The book marks text should not be truncated but some way needs to be found to allow the entire text of any line to be viewed when the cursor lands on it. Much of the information in "HELP" related to this question turns out to be very very old (essentially meaningless in 2012).

How to decrease width of the dropdown bookmark panel (FF 11)? This panel is too wide and covers too much space in underlying windows. The book marks text should not be truncated but some way needs to be found to allow the entire text of any line to be viewed when the cursor lands on it. Much of the information in "HELP" related to this question turns out to be very very old (essentially meaningless in 2012).

Alterado por wmtross em

Todas as respostas (2)

more options

My bookmarks truncate, but only after many, many characters. Then you can view the full title, as well as the URL, in the mouseover tooltip.

To narrow the width of the bookmark menus:

(1) There might be an existing add-on targeted to this; I didn't search.

(2) You could create a custom style rule. One way to do this is to use the Stylish extension and add the following userstyle (create a blank rule first):


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); #bookmarksMenu menupopup {max-width:15em;}

That works in my test, but you can tweak that maximum width to suit your needs. (1 "em" is about 16 pixels). Stylish can be installed from here: Stylish :: Add-ons for Firefox.

(3) You could create a custom style rule in the file userChrome.css, which you can add to your personal Firefox profile. I didn't test it.

more options

You may have to add or use different selectors depending on where you want to achieve this with code in userChrome.css or Stylish.
The #bookmarksMenu selector only works for the Bookmarks menu and not for other drop down menus like the Bookmarks menu in the Firefox menu button or folders on the Bookmarks Toolbar or the Bookmarks menu button.

#appmenu_bookmarksPopup menuitem,
#bookmarksMenuPopup .bookmark-item,
#BMB_bookmarksPopup .bookmark-item ,
#personal-bookmarks menupopup .bookmark-item {
  max-width:15em;
}