×

    Hello there and welcome to our forums!. You can Register for an account or Login to your existing account. You can also click those big buttons in the top right corner.


Suggested changes for the website
#17
"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:

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 }');
The following 3 users Like Inspect's post:
  • alade3n, Gamma Bot, LiPOTO
 Reply
  


Messages In This Thread
RE: Suggested changes for the website - by zYSON - 07-03-2020, 01:06 PM
RE: Suggested changes for the website - by Daniel - 07-05-2020, 12:24 PM
RE: Suggested changes for the website - by Jumbo - 07-05-2020, 04:22 PM
RE: Suggested changes for the website - by Inspect - 07-25-2020, 01:29 PM

Forum Jump:


Users browsing this thread:
1 Guest(s)

Suggested changes for the website0