Brings back the centred style back before the user ads were removed.
Revert roblox's old centred website layout. by liamsigma
Details
Authorliamsigma
LicenseNo License
Categoryroblox.com
Created
Updated
Size814 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 Centred Style Revert
@namespace roblox.com
@version 1.0.0
@description Roblox Centred Style
@author liamsigma
==/UserStyle== */
@-moz-document domain("roblox.com") {
/* Insert code here... */
}
/* Center the Roblox website layout */
body {
max-width: 1200px;
/* Adjust the width as needed */
margin: 0 auto;
/* Center the body */
padding: 0 20px;
/* Add some padding */
}
/* Adjust container styles if needed */
.container {
width: 100%;
/* Ensure containers take full width */
}
/* Center align main content */
.main-content {
display: flex;
justify-content: center;
/* Center the main content */
}
/* Make sure to adjust any other elements to fit your preference */