Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

Where is the file that creates the mozilla firefox start page found?

  • 4 trả lời
  • 1 gặp vấn đề này
  • 79 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

I like the Firefox start page but want to tweak it a bit. Where can I gain access to the file? I am using Firefox 29.0.1

Thanks

I like the Firefox start page but want to tweak it a bit. Where can I gain access to the file? I am using Firefox 29.0.1 Thanks

Giải pháp được chọn

In what way do you want to tweak or modify the about:home page?

Đọc câu trả lời này trong ngữ cảnh 👍 0

Tất cả các câu trả lời (4)

more options

In the omni.ja file in Firefox Program Files. Open about:home then right-click and select View Page Source. The path to the aboutHome.xhtml file is in the titlebar.
The problem with editing that file is that every 6 weeks when Firefox is updated you'll probably have to edit that file all over again.

What specifically do you want to tweak?
Additions or changes can usually be accomplished thru a userContent.css file, for most things.
http://kb.mozillazine.org/UserContent.css

For instance - hide the "snippet" and hide the "bar" at the bottom with Downloads, Bookmarks, etc :

@-moz-document url(about:home) {
  #snippetContainer { display:none !important; }
}

@-moz-document url(about:home){
 #launcher { display: none !important; }
}
 
more options

I liked the look of the page and wanted it as a static home page for firefox. But since posting and receiving your reply edmeister I have seen two updates and I think I like how it is dynamic so I will be leaving it as is.

Thanks for getting back to me so quick, pity I couldn't respond as quick as I am still waiting for my Internet to be connected at my new place.

mnemonic

more options

You're welcome.

more options

Giải pháp được chọn

In what way do you want to tweak or modify the about:home page?