Skip to content

Instantly share code, notes, and snippets.

@davidbgk
Forked from maxlath/userChrome.css
Created October 12, 2021 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidbgk/4f013a623916a1a63e88c1ae274d43e4 to your computer and use it in GitHub Desktop.
Save davidbgk/4f013a623916a1a63e88c1ae274d43e4 to your computer and use it in GitHub Desktop.
Hide "Firefox suggests" text in Firefox 93 search menu
/*
Create or edit userChrome.css in your Firefox profile folder,
typically found on Linux at ~/.mozilla/firefox/[some firefox profile folder]/chrome/userChrome.css
*/
.urlbarView-row[label]{
margin-block-start: 0 !important;
}
.urlbarView-row[label]::before{
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment