Gamma Group
Suggested changes for the website - Printable Version

+- Gamma Group (https://gammagroup.wtf)
+-- Forum: Bulletin (https://gammagroup.wtf/forum-6.html)
+--- Forum: Feedbacks & Suggestions (https://gammagroup.wtf/forum-9.html)
+--- Thread: Suggested changes for the website (/thread-17.html)

Pages: 1 2


RE: Suggested changes for the website - Daniel - 07-05-2020

website looks fine nice work aladen when do i get a cool thot tag


RE: Suggested changes for the website - alade3n - 07-05-2020

(07-05-2020, 12:24 PM)Daniel Wrote: website looks fine nice work aladen when do i get a cool thot tag

@Daniel when i am finished with setting things up


RE: Suggested changes for the website - Jumbo - 07-05-2020

Hello

I am editing my profile and in some point it makes me to put my PR:BF2 Hash key

But there is no hash key anymore, so if u go to support in the PR launcher to find the hash key where it is suppose to be, just can find the ID number

So if u replace it could be much easier for new players at least


RE: Suggested changes for the website - alade3n - 07-06-2020

(07-05-2020, 04:22 PM)Revenant Wrote: Hello

I am editing my profile and in some point it makes me to put my PR:BF2 Hash key

But there is no hash key anymore, so if u go to support in the PR launcher to find the hash key where it is suppose to be, just can find the ID number

So if u replace it could be much easier for new players at least

hash key is now ID number in the launcher support


RE: Suggested changes for the website - John_Hammer - 07-11-2020

Would be cool to have a "General" forum category.


RE: Suggested changes for the website - alade3n - 07-11-2020

(07-11-2020, 06:45 PM)John_Hammer Wrote: Would be cool to have a "General" forum category.
@John_Hammer done


RE: Suggested changes for the website - Inspect - 07-25-2020

"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 }');



RE: Suggested changes for the website - alade3n - 07-25-2020

(07-25-2020, 01:29 PM)Inspect Wrote: "gammagroup.wtf" directs to non-https version of the page. Pls fix.

Yes I am aware of it as well, will get this fixed soon. Thank you for the suggestion with the stylesheets, I will look into it Heart