u/Azreal_DuCain1

Image 1 — Favorite websites icons on new tabs page no longer vertically centered, prefer old customise icon on bottom right of new tabs page.
Image 2 — Favorite websites icons on new tabs page no longer vertically centered, prefer old customise icon on bottom right of new tabs page.

Favorite websites icons on new tabs page no longer vertically centered, prefer old customise icon on bottom right of new tabs page.

Windows 11, Firefox 151.0 (64 bit)

Issue 1: Can we bring back the old customise icon in the bottom right corner or just remove it? There are other ways to get to the Firefox Settings page so I don't need it.

Issue 2: I've previously used code to remove the Firefox logo and that automatically vertically centered the icons without any further code being necessary but now the new updates have messed that up. Anyone know how to fix that? Code below.

UserContent:

/*This removes the Firefox logo on the new tabs page.*/
@-moz-document url("about:newtab"), url("about:home") {
  .logo-and-wordmark {
    display:none !important;
  }

/*This changes the scale of the pinned/recent websites icons on the new tabs page.*/
  .top-sites-list .top-site-outer .top-site-button {
    transform: scale(1.2,1.2) !important;
  }
}

/*This governs the space between the pinned/recent websites icons on the new tabs page. Unforntunately, altering this alone uncenters the buttons and can make the "..." button overlap.*/
.top-site-outer {
        width: 100px !important; /* 120 is default value */
    }

/*This changes the length and width of the inner colorful portion of the pinned/recent websites icons.*/
  .top-site-outer .tile .icon-wrapper {
    width:  30px !important; /* 40 is default value */
    height: 30px !important; /* 40 is default value */
    }

/*Makes the rounding of the pinned websites tiles on the new tabs page less ugly.*/
@-moz-document url(chrome://browser/content/browser.xul), url(about:newtab), url(about:home) {
    .top-site-outer .tile {
        border-radius: 10px !important;
    }
}```
u/Azreal_DuCain1 — 2 days ago

Is it possible to restore the old show sidebars icon?

The new one's okay but I liked the old one better. It was a slightly better design by being slightly less attention grabbing.

Windows, Firefox version 151.0 (64 bit)

u/Azreal_DuCain1 — 2 days ago