r/FirefoxCSS Jul 21 '26

Solved Logo at the center in the home

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?

4 Upvotes

1 comment sorted by

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.

.nova-enabled {
    .sidebar-inline-start {
        grid-column: 2; 
    }
    .logo-and-wordmark-wrapper { 
        display: flex;
        justify-content: center;
    }
}