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

keyword and description fields missing when add bookmark

more options

vers 37.0.1 In a recent upgrade I notice the keyword and description fields are missing when "bookmark this page". When view bookmark properties in bookmarks sidebar these fields appear

vers 37.0.1 In a recent upgrade I notice the keyword and description fields are missing when "bookmark this page". When view bookmark properties in bookmarks sidebar these fields appear

All Replies (5)

more options

Start Firefox in Safe Mode {web Link} by holding down the <Shift>
(Mac Options)
key, and then starting Firefox. Is the problem still there?

more options

That is standard. You can look at this extension:

more options

Fredmcd- Problem still occurs in safe mode. Why do you ask, do you not have the problem?

Cor-el - if it is working as intended then it doesn't make sense. why have fields that you can only edit AFTER you have added the record, thru another screen?

more options

You can make the fields visible with code in userChrome.css ()they have visibility:collapse).

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 */

#editBMPanel_keywordRow,
#editBMPanel_descriptionRow,
#editBMPanel_loadInSidebarCheckbox {
 visibility:visible !important;
}

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

You can use this button to go to the currently used Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file
more options

Ok Thanks, that works

If they would at least have an option to expand the bookmark add dialog it would avoid this kind of confusion