Moves the "Favorites" section to the top, why wasn't it there before??
Roblox - Favorites Priority by devurose
Details
Authordevurose
LicenseNo License
Categoryroblox
Created
Updated
Size932 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Roblox - Favorites Priority
@version 20240213.05.58
@namespace https://userstyles.world/user/devurose
@description Moves the "Favorites" section to the top, why wasn't it there before??
@author devurose
==/UserStyle== */
@-moz-document url-prefix("https://www.roblox.com/home") {
/* Setup */
.game-home-page-container > div {
display: flex;
flex-direction: column;
}
}
@-moz-document url-prefix("https://www.roblox.com/home") {
/* Ordering */
/* Sponsered Header */
#place-list > div > div > div:nth-child(5) {
order: 1;
}
/* Sponsered Games */
#place-list > div > div > div:nth-child(6) {
order: 2;
}
/* Divider */
#place-list > div > div > div.home-interleave-divider {
order: 10;
}
/* Recommended For You */
#place-list > div > div > div:nth-child(3) {
order: 11;
}
/* Infinite Scroll */
#place-list > div > div > div:nth-child(9) {
order: 12;
}
}