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

Can I add a keyword while making a bookmark?

  • 2 replies
  • 2 have this problem
  • 12 views
  • Last reply by MrJosh211

more options

Is it possible to enter a keyword while I'm making a bookmark? I usually want to add a keyword when I make a bookmark, but the window only lets me enter "Name", "Folder", and "Tags". In order to add a keyword, I have to finish making the bookmark, and then "Show All Bookmarks" and find my new bookmark and add the keyword that way.

Is it possible to enter a keyword while I'm making a bookmark? I usually want to add a keyword when I make a bookmark, but the window only lets me enter "Name", "Folder", and "Tags". In order to add a keyword, I have to finish making the bookmark, and then "Show All Bookmarks" and find my new bookmark and add the keyword that way.

Chosen solution

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

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

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

#editBMPanel_keywordRow { visibility: visible !important; display: -moz-grid-line !important; }
Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

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

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

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

#editBMPanel_keywordRow { visibility: visible !important; display: -moz-grid-line !important; }
more options

Thanks, worked perfectly.