Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

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

how do i get rid of the annoying for jumping over ditches on the start page.

  • 7 trả lời
  • 4 gặp vấn đề này
  • 5 lượt xem
  • Trả lời mới nhất được viết bởi John99

more options

i just downloaded the latest updates from mozilla for firefox and since then this annoying running fox appears in a small window below the search bar and go away until i go to a web site. how do i get rid of it . left or right click does not help

i just downloaded the latest updates from mozilla for firefox and since then this annoying running fox appears in a small window below the search bar and go away until i go to a web site. how do i get rid of it . left or right click does not help

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

more options

Why not post a screen shot.

Whatever it is you are seeing is probably not connected with Firefox but something else you have managed to download.

more options

That's probably a snippet on the about:home default homepage. You can change your home page to get away from the video.
http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

more options

thank you i will try to post a screen shot never done that before. i just assumed because it was a fox that it was from mozilla it says "play runfield the latest HTML5 from "Aurora "

more options

thank again i will try that

more options

The "snippetContainer" is what that part of the about:home page is called, in the internal coding. It is used by Mozilla to send different messages to users as they open Firefox. Most release versions rotate 3 or 4 different messages, but the 6.0 Beta seems to be stuck on that one HTML5 video message most of the time.

You can hide the box that shows the snippets with code in userChrome.css. if you want to hide that silliness.

Add code to userChrome.css below the @namespace line.

   * http://kb.mozillazine.org/userChrome.css
   * http://kb.mozillazine.org/Editing_configuration 

You can use the ChromEdit Plus extension to have easier access to the customization files.

   * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html 
 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* hide snippet container on the about:home page */
#snippetContainer { display: none !important; } 

edit - fixed the code to display correctly

Được chỉnh sửa bởi the-edmeister vào

more options

so i was right- the glitch is in the browser thanks again. has no one else posted the problem?

more options

I guess I must have already opted for some option not to display such snippets. My page source shows:

<div id="snippetContainer">

       <div id="defaultSnippets" hidden="true">  

I am not seeing jumping foxes, even in Firefox 6.


I wonder has markup syntax of this forum been modified

I thought leaving a leading space allowed the less than chevrons of code, but I had to use the escape above.