Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

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

Learn More

Menu Bar is only showing halfway when FF is maximized! The top is cut off

  • 6 个回答
  • 1 人有此问题
  • 2 次查看
  • 最后回复者为 SpeedyKepke

more options

After updating FF to version 99.01, suddenly FF Messed up the Menu Bar. Now my Menu Bar at the very top is cut off. Can't see the top 50% of the buttons, when FF is maximised - as usually.

After updating FF to version 99.01, suddenly FF Messed up the Menu Bar. Now my Menu Bar at the very top is cut off. Can't see the top 50% of the buttons, when FF is maximised - as usually.
已附加屏幕截图

所有回复 (6)

more options

Does this also happen if you manually maximize the Firefox window and then click the maximize button >

You can try to rename/remove xulstore.json in the Firefox profile folder with Firefox closed.

You can use the button on the "Help -> More Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page (Root directory).

more options

Many users who created a userChrome.css with "tabs below address bar" rules have this problem in Firefox 99. Obviously something has changed position by several pixels. Please return to the source of your rules and check for an updated version, or consider switching to a more updated source for those rules.

more options

You can try the code in this forum response for CSS code in userChrome.css for Firefox 89+ to move the tabs to below the Navigation Toolbar:

more options

The forum response isn't maintained so I would update from the source from which you got your code originally. Alternatively, look at the thread linked below (remove blank space in link). https://www.reddit. com/r/FirefoxCSS/comments/u202no/v_99_menu_fix_wanted/

more options

to cor-el see my exemple

  • showing FF according with the css I'm working now
  • according to the suggested css - the Menu bar is normal now

but the tabs on bottom are partly illegible, and there also is a double line visible now

more options

with below css the Menu bar is normal again, such as the tabs on bottom

  1. TabsToolbar {
position: absolute;
display: block;
bottom: 0;
width: 100vw;
background-clip: padding-box;
color: var(--toolbar-color);
} 
  1. tabbrowser-tabs {
width: 100vw;
} 
  1. navigator-toolbox {
position: relative;
padding-bottom: calc( var(--tab-min-height) + 8px );

}

  1. main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"]) #titlebar {
height: 36px;
} 

.titlebar-buttonbox-container { position: fixed;

right: 0;
visibility: visible;
display: block;
}
#TabsToolbar .titlebar-buttonbox-container,
#TabsToolbar #window-controls {

display: none;

}