Removes the sidebar from GBAtemp and makes the main forum content full-width. Adblock/Ublock origin still recommended to completely remove/disable ad activities.
GBAtemp full width layout by kupie
Details
Authorkupie
LicenseMIT
Categorygbatemp
Created
Updated
Size539 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 GBAtemp full width layout
@namespace github.com/Kupie/
@version 1.0.0
@description Removes the sidebar from GBAtemp and makes the main forum content full-width. Adblock/Ublock origin still recommended to completely remove/disable ad activities.
@author Kupie
==/UserStyle== */
@-moz-document domain("gbatemp.net") {
.p-body-sidebar {
display: none !important;
width: 0 !important;
height: 0 !important;
}
.p-body-content {
max-width: 100vw !important;
}
}