Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 1 ответ
  • 1 имеет эту проблему
  • 29 просмотров
  • Последний ответ от 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.
Приложенные скриншоты

Изменено Chandelier

Выбранное решение

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

   display: none !important;
 }]
Прочитайте этот ответ в контексте 👍 0

Все ответы (1)

more options

Выбранное решение

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

   display: none !important;
 }]