-
-
Save davidbgk/4f013a623916a1a63e88c1ae274d43e4 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/[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