Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Is the FF33 newtab behaviour buggy?

  • 2 replies
  • 1 has this problem
  • 1 view
  • Last reply by cor-el

more options

I have been using the default about:newtab for new tabs, although I had modified some settings, including at one point setting browser.newtabpage.storageVersion to 1 as suggested somewhere. I'm also using TabMixPlus.

Anyway, since upgrading to FF33 it looks worse - aesthetically 4 tiles wide and 1 deep with a search bar is not what I want, and it also lost my previous most frequently visited page (BBC weather). I noticed that if you hit F5 to refresh though, it does respect browser.newtabpage.columns and show 5x3 tiles.

I don't see this listed at among the issues at https://wiki.mozilla.org/QA/Newtab_page_Tiles/Test_Plan. Why it should show something different after refresh is particuarly odd though - is it possible to use browser.newtabpage.columns all the time?

I have been using the default about:newtab for new tabs, although I had modified some settings, including at one point setting browser.newtabpage.storageVersion to 1 as suggested somewhere. I'm also using TabMixPlus. Anyway, since upgrading to FF33 it looks worse - aesthetically 4 tiles wide and 1 deep with a search bar is not what I want, and it also lost my previous most frequently visited page (BBC weather). I noticed that if you hit F5 to refresh though, it does respect browser.newtabpage.columns and show 5x3 tiles. I don't see this listed at among the issues at https://wiki.mozilla.org/QA/Newtab_page_Tiles/Test_Plan. Why it should show something different after refresh is particuarly odd though - is it possible to use browser.newtabpage.columns all the time?

All Replies (2)

more options

Please zoom out on the newTab page and see what happens to the grid layout.

more options

You can 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.

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.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)