07-25-2020, 01:29 PM
"gammagroup.wtf" directs to non-https version of the page. Pls fix.
Also use min and max-width so forum width isn't 100% on all displays, and make the style have less empty space.
Here's a greasemonkey script for better forum layout:
Also use min and max-width so forum width isn't 100% on all displays, and make the style have less empty space.
Here's a greasemonkey script for better forum layout:
Quote:// ==UserScript==
// @name Make Gamma Group forum style less broken
// @include https://gammagroup.wtf/*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('body { line-height: 1 !important; }');
addGlobalStyle('.post .post_author div.author_statistics { line-height: 1 !important; }');
addGlobalStyle('.pu-fields { display: none !important; }');
addGlobalStyle('.signature { display: none !important; }');
addGlobalStyle('.author_information { display: none !important; }');
addGlobalStyle('.author_statistics { display: none !important; }');
addGlobalStyle('#main-container { width: 60%; margin: 0 auto; min-width: 1200px; max-width: 1600px; }');
addGlobalStyle('.tfoot { border-top: 2px solid #a3a3a3 !important }');
addGlobalStyle('.postbit_offline { display: none }');