Getting Rid of "Main Page" Title

If you are having problems with GuMax, post here.
Post Reply
User avatar
CRV
Rank 0
Rank 0
Posts: 3
Joined: January 6th, 2012, 11:10 am

Getting Rid of "Main Page" Title

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

Re: Getting Rid of "Main Page" Title

Post 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...
User avatar
CRV
Rank 0
Rank 0
Posts: 3
Joined: January 6th, 2012, 11:10 am

Re: Getting Rid of "Main Page" Title

Post by CRV »

That works. Thanks.
User avatar
Jonathan
Rank 6
Rank 6
Posts: 33
Joined: April 6th, 2009, 8:19 pm

Re: Getting Rid of "Main Page" Title

Post 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
Post Reply