Adapt GuMax 3.2.1 to MW 1.18

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
helober
Rank 1
Rank 1
Posts: 7
Joined: September 13th, 2008, 4:30 am

Adapt GuMax 3.2.1 to MW 1.18

Post 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
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Adapt GuMax 3.2.1 to MW 1.18

Post 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.
User avatar
helober
Rank 1
Rank 1
Posts: 7
Joined: September 13th, 2008, 4:30 am

Re: Adapt GuMax 3.2.1 to MW 1.18

Post 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.
User avatar
smartuser20
Rank 0
Rank 0
Posts: 1
Joined: July 3rd, 2012, 2:20 pm

Re: Adapt GuMax 3.2.1 to MW 1.18

Post 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.
Image
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Adapt GuMax 3.2.1 to MW 1.18

Post by Paul »

Use any editor like notepad...
Post Reply