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

搜索 | 用户支持

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

详细了解

Why are there only 4 pinned sites (instead of 8) on the tab page? - Firefox 39

  • 3 个回答
  • 5 人有此问题
  • 3 次查看
  • 最后回复者为 tenderprey

more options

I just updated to Firefox 39 and I regret it already. For a long time, two rows of four sites (in thumbnail) (eight sites total) were on my tab page (You know, when you press the '+ - Open a new tab'?)

I updated and now only four appear on that page. I NEED all eight thumbnails. Two rows of four. Just as it was before. Is that possible and how can I fix this?

I just updated to Firefox 39 and I regret it already. For a long time, two rows of four sites (in thumbnail) (eight sites total) were on my tab page (You know, when you press the '+ - Open a new tab'?) I updated and now only four appear on that page. I NEED all eight thumbnails. Two rows of four. Just as it was before. Is that possible and how can I fix this?
已附加屏幕截图

被采纳的解决方案

You can zoom out the about:newtab page to resize the tiles and have more tiles fit on the page.

  • View > Zoom > Zoom Out; Ctrl and -
    "Zoom Text Only" shouldn't have a tick

This will affect all elements on the page, so text get smaller as well. Make sure that only one tab with the about:newtab page is open when you change the page zoom. Toggle the browser.newtab.preload pref to false on the about:config page in case of issues with remembering the page zoom of the about:newtab page.


You can consider to hide the search bar and the margins at the top and bottom with code in the userContent.css file to get more space for tiles. See my post here:

--- Add code to the userContent.css file.


@-moz-document url(about:newtab) {
 #newtab-margin-top,
 #newtab-margin-bottom,
 #newtab-search-container {display:none!important}
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

定位到答案原位置 👍 7

所有回复 (3)

more options

Is there just a way to go back to the last version I had?

more options

选择的解决方案

You can zoom out the about:newtab page to resize the tiles and have more tiles fit on the page.

  • View > Zoom > Zoom Out; Ctrl and -
    "Zoom Text Only" shouldn't have a tick

This will affect all elements on the page, so text get smaller as well. Make sure that only one tab with the about:newtab page is open when you change the page zoom. Toggle the browser.newtab.preload pref to false on the about:config page in case of issues with remembering the page zoom of the about:newtab page.


You can consider to hide the search bar and the margins at the top and bottom with code in the userContent.css file to get more space for tiles. See my post here:

--- Add code to the userContent.css file.


@-moz-document url(about:newtab) {
 #newtab-margin-top,
 #newtab-margin-bottom,
 #newtab-search-container {display:none!important}
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

more options

Thank you! The steps in the first section of your answer seem to have fixed the issue! I'm interested in the tweaks in the other sections and will experiment more with them. Thank you again for the speedy solution!