I'd like to know how to remove the upside down triangle history
I don't remember seeing the upside down triangle in the location bar before. Is it something I can remove?
I tried to add a screen shot, but I couldn't figure out how to do that.
被選擇的解決方法
That drop down marker has always been there and will show items that you have types or pasted in the location/address bar ordered by frecency (recently and frequently visited sites). It is possible to hide this icon if you really want to.
Add code to the userChrome.css file below the default @namespace line.
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
.urlbar-history-dropmarker { display:none!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:
- Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
- Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
- Use a plain text editor like Textedit on Mac 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
所有回覆 (2)
This is the screen shot I was talking about.
選擇的解決方法
That drop down marker has always been there and will show items that you have types or pasted in the location/address bar ordered by frecency (recently and frequently visited sites). It is possible to hide this icon if you really want to.
Add code to the userChrome.css file below the default @namespace line.
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
.urlbar-history-dropmarker { display:none!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:
- Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
- Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
- Use a plain text editor like Textedit on Mac 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