Page 1 of 1

Adapt GuMax 3.2.1 to MW 1.18

Posted: January 17th, 2012, 5:17 am
by helober
I recently upgraded several MediaWikis to version 1.18. In most of the Wikis I used the skin Gumax 3.2.1. First, I ran into the same problem as described in this post viewtopic.php?f=7&t=1026&p=3283&hilit=M ... 1.18#p3283 and solved it by either deleting the line

Code: Select all

<?php print Skin::makeGlobalVariablesScript( $this->data ); ?> 
or replacing it as described in the other post.

However, all pages now have some odd boxes close to the bottom. You can see that on this page http://www.tuerkeiforum.net/enw/index.p ... =Main_Page How can I get rid of these boxes?

Thanks in advance

Re: Adapt GuMax 3.2.1 to MW 1.18

Posted: January 17th, 2012, 7:37 pm
by Paul
Open gumax_template.css and find:

Code: Select all

    #catlinks {
        border: 1px solid #aaa;
        background-color: #f9f9f9;
        padding: .3em;
        margin-top: 1em;
        clear: both;
    }
Change to this:

Code: Select all

    #catlinks {
        border: none;
        background-color: #f9f9f9;
        padding: .3em;
        margin-top: 1em;
        clear: both;
    }
I strongly recommend you to upgrade to latest GuMax.

Re: Adapt GuMax 3.2.1 to MW 1.18

Posted: January 18th, 2012, 2:39 am
by helober
Thanks a lot. At least I've understood the purpose of the "boxes". Another thanks for the hint to upgrade. I have to seriously consider that.

Re: Adapt GuMax 3.2.1 to MW 1.18

Posted: July 3rd, 2012, 2:22 pm
by smartuser20
Paul wrote:Open gumax_template.css and find:

Code: Select all

    #catlinks {
        border: 1px solid #aaa;
        background-color: #f9f9f9;
        padding: .3em;
        margin-top: 1em;
        clear: both;
    }
Change to this:

Code: Select all

    #catlinks {
        border: none;
        background-color: #f9f9f9;
        padding: .3em;
        margin-top: 1em;
        clear: both;
    }
I strongly recommend you to upgrade to latest GuMax.
Hi, I have the same problem. How do I open the gumax_template.css please? Sorry if this is a dumb question.

Re: Adapt GuMax 3.2.1 to MW 1.18

Posted: August 21st, 2012, 5:45 pm
by Paul
Use any editor like notepad...