Add Keyword to Edit This Bookmark Location bar Star

User Help for Mozilla Firefox
Post Reply
pschroeter
Posts: 154
Joined: September 3rd, 2004, 1:19 pm

Add Keyword to Edit This Bookmark Location bar Star

Post by pschroeter »

I want to add Keyword(s) to Edit This Bookmark drop down when I click on the bookmark star in the location bar. I want more direct access to keywords for adding them or finding out what they are without hunting through the Library, since it and Edit This Bookmark aren't connected. I swear I had this feature years ago but I don't know how. I haven't found an addon that does it.

I found an article from 2011 that tells how to do it by editing the userChrome.css file (see below), but I can't believe it would work now and I would hope for an easier solution.

Code: Select all

 #editBMPanel_locationRow,
#editBMPanel_keywordRow
{
visibility: visible !important;
-moz-box-align: center !important;
}
#editBMPanel_tagsSelector[collapsed="true"]
{
display: none !important;
} 
User avatar
dickvl
Posts: 54163
Joined: July 18th, 2005, 3:25 am

Re: Add Keyword to Edit This Bookmark Location bar Star

Post by dickvl »

Best is to leave out the second rule (-moz-box-align) to avoid weird effects.

You can add this code to the userChrome.css file below the default @namespace line.
See http://kb.mozillazine.org/userChrome.css

Code: Select all

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

/* always display keyword row */
#editBMPanel_keywordRow {
 visibility: visible !important;
}
tonynyc
Posts: 53
Joined: August 9th, 2013, 12:20 pm

Re: Add Keyword to Edit This Bookmark Location bar Star

Post by tonynyc »

I have align left, it works fine:

#editBMPanel_keywordRow
{
visibility: visible !important;
-moz-box-align: left !important;
}
Post Reply