Skip to content

Instantly share code, notes, and snippets.

@maxlath
Last active October 12, 2021 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save maxlath/6b648089a6bcab993b6eaa079f3e417d to your computer and use it in GitHub Desktop.
Save maxlath/6b648089a6bcab993b6eaa079f3e417d 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/[your 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