Page 1 of 1

Getting Rid of "Main Page" Title

Posted: January 7th, 2012, 10:40 am
by CRV
I recently upgraded to the latest versions of MediaWiki and GuMax Horizontal and can't seem to get rid of the "Main Page" title. The following is in "gumax_template.css" but no longer has an effect:

Code: Select all

.page-Home .gumax-firstHeading {
   display: none;
}

Re: Getting Rid of "Main Page" Title

Posted: January 7th, 2012, 7:29 pm
by Paul
Can you replace it with this:

Code: Select all

.page-Home .gumax-firstHeading, .page-Main_Page .gumax-firstHeading {
    display: none;
}
Let me know if it works...

Re: Getting Rid of "Main Page" Title

Posted: January 8th, 2012, 8:26 am
by CRV
That works. Thanks.

Re: Getting Rid of "Main Page" Title

Posted: January 13th, 2012, 5:12 pm
by Jonathan
Using MW1.18 and GumaxDD 1.5.2 I used the following code to (1) remove the Main Page text and (2) remove the horizontal 'heading' line which appears below it.

Code: Select all

body.page-Main_Page .gumax-firstHeading { display:none; } /*Hides 'Main Page' heading */ 
body.page-Main_Page div#content {border-top:none}
It tooks me a long time to figure it out, so I hope it helps someone!

Jonathan