搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 1 回覆
  • 1 有這個問題
  • 30 次檢視
  • 最近回覆由 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;
 }]