为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Full Drop Down Menus Instead of Scrolling Ones

  • 6 个回答
  • 9 人有此问题
  • 3 次查看
  • 最后回复者为 JohnSmithy

more options

When I right click, or when I use the "Tools" or "View" menus, rather than seeing the full menu, I get a partial menu with a downward black triangle at the bottom and an upward facing triangle at the top. If I hover over that triangle, the menu scrolls up and down to let me see additional items on the menu.

I would prefer to see the whole menu. How can I do that?

When I right click, or when I use the "Tools" or "View" menus, rather than seeing the full menu, I get a partial menu with a downward black triangle at the bottom and an upward facing triangle at the top. If I hover over that triangle, the menu scrolls up and down to let me see additional items on the menu. I would prefer to see the whole menu. How can I do that?

所有回复 (6)

more options

I can't think of any place to set that, except... I noticed you have the add-on ChromEdit Plus listed in your "More system details" info. If you check that extension, does it mention anything about the number of items on a menu (e.g., max-height or similar rule)?

more options

As far as I know (and I'm a relative newbie) chromedit plus isn't like when you type "about:config" in the browser bar and you get this list of options that you can toggle on or off. You have to know a sequence that you want to type into your profile, which then causes changes. I only have it because when I'm googling questions about firefox, occasionally an answer will say to cut-and-past this into your chromedit profile, which i can do because i have add on.

Do you know if there is a way to set my profile so that I get an email when someone (like you) replies to my post? right now, i am just coming back occasionally to see if there are responses.

Thank you for your help!

more options

I don't know how notifications work on this forum. (I'm not getting any.)

If you have added new rules in the past, then take a look at your userChrome.css file. It is in your Firefox profile folder which is roughly here:

C:\Documents and Settings\windowsusername\Application Data\Mozilla\Firefox\Profiles\profilename\chrome

If you like, you can paste the rules here for review. If anything looks too personal, delete that from your text before hitting Post Reply.

more options

Here's what I have. Thanks!

#urlbar-icons > #star-button
{
display:   none !important;
}

/*Remove magnifying glass button from search box*/
.search-go-button-stack { display: none !important; } 

/* Eliminate the throbber and its annoying movement: */
#throbber-box { display: none !important; }



/*
 * Edit this file and copy it as userChrome.css into your
 * profile-directory/chrome/
 */

/*
 * This file can be used to customize the look of Mozilla's user interface
 * You should consider using !important on rules which you want to
 * override default settings.
 */

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */


/*
 * Some possible accessibility enhancements:
 */
/*
 * Make all the default font sizes 20 pt:
 *
 * * {
 *   font-size: 20pt !important
 * }
 */
/*
 * Make menu items in particular 15 pt instead of the default size:
 *
 * menupopup > * {
 *   font-size: 15pt !important
 * }
 */
/*
 * Give the Location (URL) Bar a fixed-width font
 *
 * #urlbar {
 *    font-family: monospace !important;
 * }
 */

/*
 * For more examples see http://www.mozilla.org/unix/customizing.html
 */

由cor-el于修改

more options

You need to place the @namespace line at the top of userChrome.css before any rules.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

#urlbar-icons > #star-button
{
display:   none !important;
}

/* Eliminate the throbber and its annoying movement: */
#throbber-box { display: none !important; }


There aren't any rules related to autorepeatbuttons.

Start Firefox in Diagnose Firefox issues using Troubleshoot Mode to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes). See Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems and Troubleshoot issues with plugins like Flash or Java to fix common Firefox problems

more options

Thank you! I have changed this in my userChrome profile, but it has not helped the problem.