
How can I specify the number of Shortcuts I want visible on the default homepage?
When I open a new tab in FF, a row of 8 boxes appears below the search bar where I can add shortcuts. I currently only use 5 of them, meaning there are 3 empty boxes left over. I don't want to have them show history, or recommended websites, or anything of the sort that might distract me; the shortcuts should only be those I actually intend to use, of which there are only 5. To my knowledge, the only easy way to add/remove shortcuts is to adjust the number of visible rows, but this only allows modifications based on multiples of the original 8. Like in Chrome, can I actually remove any excess shortcut boxes I don't want to use? I feel this is a very basic customization I'm sure Firefox should be able to accommodate.
I've included a screenshot of my FF new tab, where the three empty shortcut boxes I'm referring to can be seen. Thank you in advance for any assistance!
All Replies (1)
You can limit the number of shortcuts on the new tab page to five with the following userContent.css:
@-moz-document url(about:home), url(about:newtab) { .top-sites-list .top-site-outer:nth-child(n+6) { display: none; } .top-sites-list { text-align: center; } }