cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Firefox 124.0 new tab icon spacing changed and bad

wjrasmussen
Making moves

I use new tab with icons on firefox.  It is just one of those features I love so much and keeps me using it.  It is setup as 8 by 5 icons.  Now in v124.0, something got changed in a horrible way.  The spacing changed such that in order to see all the icon, I must zoom to 80% of the size to see them all.  To make it worse, the text under the icons is small and hard for my eyes to read.

Who makes these changes?  This needs to be reverted or fixed.

1 REPLY 1

jscher2000
Leader

There is no built-in way to restyle the new tab page. But you can set Firefox to look for a user-specified style sheet at startup called userContent.css -- it's the lesser known cousin of userChrome.css. Here's an example of a userContent.css rule to tighten up the vertical spacing of the shortcuts on the new tab page in Firefox 124:

@-moz-document url(about:newtab), url(about:home) {
  /* Reduce spacing between rows of shortcuts on the new tab page */
  li.top-site-outer {
	margin-block-end: 0px !important;
  }
  a.top-site-button {
	padding-top: 5px !important;
  }
  span.sponsored-label {
	font-size: 0.75em !important;
	margin-top: -3px !important;
  }
}

Fx124-new-tab-vertical-space-userContent.css-before-after.png

 

userChrome.css and userContent.css are not officially supported, but you can find help and resources on Reddit at https://www.reddit.com/r/FirefoxCSS/.

I also have general background and setup steps on my website at https://www.userchrome.org/.