Last active
October 12, 2021 15:33
-
-
Save maxlath/6b648089a6bcab993b6eaa079f3e417d to your computer and use it in GitHub Desktop.
Hide "Firefox suggests" text in Firefox 93 search menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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