Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 7 个回答
  • 4 人有此问题
  • 5 次查看
  • 最后回复者为 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

所有回复 (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

由the-edmeister于修改

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.