mostly restores roblox's homepage by moving the continue playing & favorites tab back under the friends container
Restore Pre-2024 Roblox Homepage by melongirl

Details
Authormelongirl
LicenseNo License
Categoryroblox
Created
Updated
Code size1.1 kB
Code checksum56216adb
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Restore Pre-2024 Roblox Homepage
@version 20240710.20.53
@namespace melo
==/UserStyle== */
@-moz-document url-prefix("https://www.roblox.com/home") {
/* Restore old home page */
.home-container {
float: left;
max-width: 970px!important;
width: 100%;
}
.no-gutter-ads.logged-in .content {
margin-left: auto;
}
.game-home-page-container > div {
display: flex;
flex-direction: column;
}
.friend-carousel-container {
order: -10;
}
.game-home-page-container .game-sort-header-container:has([href*="Continue"]) {
order: -5;
}
.game-home-page-container .game-sort-header-container:has([href*="Continue"]) + .game-carousel.expand-home-content:has(.game-card-link) {
order: -4;
}
.game-home-page-container .game-sort-header-container:has([href*="Favorites"]) {
order: -3;
}
.game-carousel.expand-home-content:has(.game-card-link[href*="isAd=false"]):not(.wide-game-tile-carousel) {
order: -2;
}
/* made w love by melo <3 */
}