Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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

所有回覆 (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