Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

Is there a way to disable the "This time search with:" box in userChrome.css?

  • 1 réponse
  • 1 a ce problème
  • 12 vues
  • Dernière réponse par Chandelier

more options

This solution https://support.mozilla.org/en-US/questions/1171243 still leaves a narrow strip under the navigation bar. Is there a way to get rid of it as well?

Previously, I would use this code snippet in userChrome.css: [#PopupAutoCompleteRichResult {display: none!important;}] Then, starting with version 68 it stopped working and I found out I had to change it to this: [#urlbar-results {display: none!important;}] And after Firefox updated to version 70 it quit working.

This solution https://support.mozilla.org/en-US/questions/1171243 still leaves a narrow strip under the navigation bar. Is there a way to get rid of it as well? Previously, I would use this code snippet in userChrome.css: [#PopupAutoCompleteRichResult {display: none!important;}] Then, starting with version 68 it stopped working and I found out I had to change it to this: [#urlbar-results {display: none!important;}] And after Firefox updated to version 70 it quit working.
Captures d’écran jointes

Modifié le par Chandelier

Solution choisie

Apparently it was answered here https://support.mozilla.org/en-US/questions/1271387 by jscher2000. The new code is [#urlbar .urlbarView {

   display: none !important;
 }]
Lire cette réponse dans son contexte 👍 0

Toutes les réponses (1)

more options

Solution choisie

Apparently it was answered here https://support.mozilla.org/en-US/questions/1271387 by jscher2000. The new code is [#urlbar .urlbarView {

   display: none !important;
 }]