Hide ‘Search Bookmarks and History’ in Firefox’s address bar

No Comments

A Firefox user in #firefox asked if you can hide the grey text ‘Seach Bookmarks and History’ in the address bar.screenshot of Firefox showing the text
I created the following userChrome.css code that hides the text by turning it white. If you use a dark theme you should change the color: line to match the address bar color.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); textbox[empty="true"] .textbox-input-box { -moz-appearance: none !important; color: #fff !important; }
screenshot of Firefox showing the userChrome.css applied

Be the first to write a comment!