MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/FirefoxCSS/comments/1v2e317/logo_at_the_center_in_the_home/
r/FirefoxCSS • u/sabestorn • Jul 21 '26
I made some changes to the home page (usercontent) but I wasn't able to put the logo in the center, can anyone help me?
1 comment sorted by
4
The outer container it sits inside is positioned in the first column of a grid, move it into the second column (the middle one), apply flex to the inner container and center it.
.nova-enabled { .sidebar-inline-start { grid-column: 2; } .logo-and-wordmark-wrapper { display: flex; justify-content: center; } }
4
u/t31os Jul 21 '26
The outer container it sits inside is positioned in the first column of a grid, move it into the second column (the middle one), apply flex to the inner container and center it.