Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

How can I specify the number of Shortcuts I want visible on the default homepage?

  • 1 відповідь
  • 0 мають цю проблему
  • 33 перегляди
  • Остання відповідь від zeroknight

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!

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!
Вкладені знімки екрана

Усі відповіді (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;
  }
}