What the title says. I have disliked the new homepage layout since it was put into testing, and it’s not going away, so here’s an easy fix!
Just install Stylus (not stylish that spies on you) and click this button:
Paste this in:
.game-home-page-container div > :nth-child(-n+6) {
order: 999;
}
.game-home-page-container div > :nth-child(13),
.game-home-page-container div > :nth-child(14) {
order: 1; /* favorites to the top */
}
.game-home-page-container div:not(.container-header):not(.container-list):not(.people-list):not(.game-card-info):not(.friend-name-container):not(.ng-scope div) {
display: grid;
}
.game-carousel { /* fix containers being way too large */
display: flex !important;
}
There you go! All back to normal (hopefully). Roblox has a bunch of versions of this in testing, but this is the one that works for me in its current state. Enjoy!