搜尋 Mozilla 技術支援網站

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

Learn More

i have to remove the search engin option from the place where i am pining my favorite site links.

  • 2 回覆
  • 16 有這個問題
  • 2 次檢視
  • 最近回覆由 cor-el

more options

Hello i have to remove the search engine part you had added on the latest version. it was embarrassing me. i dont like it. the place where i can pin my favorite links on that page.

please let me know how can i do that.

thanks in advance.

Hello i have to remove the search engine part you had added on the latest version. it was embarrassing me. i dont like it. the place where i can pin my favorite links on that page. please let me know how can i do that. thanks in advance.

所有回覆 (2)

more options

Do you mean the page that shows when you open a new tab?

You can use a custom style rule to modify that page. The easiest way is to install the Stylish extension and then a user style posted by a forum volunteer. You can find the links in this post:

https://support.mozilla.org/questions/1012008#answer-607627

more options

Add code to the userContent.css file.

@-moz-document url(about:newtab){
 #newtab-margin-top, #newtab-search-container { display:none !important; }
}

The customization files userContent.css (websites) and userChrome.css (user interface) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in this folder (the names are case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file