본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

how does on customize the color of the new tab page?

  • 2 답장
  • 1 이 문제를 만남
  • 30 보기
  • 최종 답변자: myPalabok

more options

FF 60.5.0esr

how does one make the new tabe page dark? or any color?

FF 60.5.0esr how does one make the new tabe page dark? or any color?

선택된 해결법

found it too.

write about:profiles in the Firefox address bar and select Open Folder in correspondence of the "Root Directory" of the user profile you want to customize;

create a new folder named "chrome";

create a new file named userContent.css inside the chrome folder and put the following code in it:

   @-moz-document url("about:newtab") {  
       body {
           background-color: #000000 !important;
       }
   }

note: that all zeroes is a html color code. so just google for the values corresponding to the color you want.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (2)

more options

Hi, you can only do that with userContent.css

/*CHANGE NEW TAB BACKGROUND COLOUR*/
@-moz-document url("about:newtab"), url("about:home") {
 body { background-color: #e7d74b !important;}
}

You can replace #e7d74b with any colour you like from https://www.w3schools.com/cssref/css_colors.asp

Note that this goes into a userContent.css file, not userChrome.

If you don't know how to use CSS, see https://www.userchrome.org/what-is-userchrome-css.html


Depending on how you use the New Tab, you can alternatively use an extension such as https://addons.mozilla.org/en-US/firefox/addon/quick-dial/

If your question is resolved by this or another answer, please help other users by marking the best reply as Solved. Thank you!

글쓴이 Scribe 수정일시

more options

선택된 해결법

found it too.

write about:profiles in the Firefox address bar and select Open Folder in correspondence of the "Root Directory" of the user profile you want to customize;

create a new folder named "chrome";

create a new file named userContent.css inside the chrome folder and put the following code in it:

   @-moz-document url("about:newtab") {  
       body {
           background-color: #000000 !important;
       }
   }

note: that all zeroes is a html color code. so just google for the values corresponding to the color you want.