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!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

allow zero length book mark names

  • 3 replies
  • 1 has this problem
  • 15 views
  • Last reply by Mrdrew

more options

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.

Bookmarks frequently have helpful cute little icons next to them. I like to rename many of my bookmarks (the Google ones) with zero length names - but the folder that drops down is still wide to accomodate the "Open in all tabs." This could be a bit better.
Attached screenshots

Chosen solution

That would be this code in userChrome.css.


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

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
Read this answer in context 👍 1

All Replies (3)

more options

With the correct userChrome.css it is possible to hide that "Open All in Tabs" line, and that should allow that field to collapse.

This package for userChrome.css has all the codes, just a matter of reviewing each .css file to find the correct one to use. https://github.com/stonecrusher/simpleMenuWizard

more options

Chosen Solution

That would be this code in userChrome.css.


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

menuseparator.bookmarks-actions-menuseparator,
menuitem.openintabs-menuitem {
 display:none!important;
}
more options

Thank you. I also had to refer to this site for the rest of the setup https://www.userchrome.org/how-create-userchrome-css.html