Solved: How do I disable the page title to appear ?

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
jlhenry
Rank 0
Rank 0
Posts: 2
Joined: February 29th, 2008, 12:38 pm

Solved: How do I disable the page title to appear ?

Post by jlhenry »

In Mediawiki, with Commons.css we can disable a page title with this :

Code: Select all

body.page-PageTitle h1.firstHeading { display:none; }
added in the page MediaWiki:Common.css.

How can I do it with GuMax?

I tried this http://www.fondationekopedia.org/MediaWiki:GuMax.css
For this page: http://www.fondationekopedia.org/Faire_ ... onetime/fr
but it's not working.

Any idea?

Thanks,
Jean-Luc
User avatar
jlhenry
Rank 0
Rank 0
Posts: 2
Joined: February 29th, 2008, 12:38 pm

Re: Solved: How do I disable the page title to appear ?

Post by jlhenry »

Thanks for the FAQ (http://paulgu.com/wiki/Manual:FAQ#How_d ... e_title.3F)

I view my source page to find the correct class.
I edit MediaWiki:Common.css
I put in it:

Code: Select all

body.page-Faire_un_don_EUR_onetime_fr h1.firstHeading { display:none; }
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Solved: How do I disable the page title to appear ?

Post by Paul »

Usually by viewing the code of the page, you will be easy to find the tag name, and then add it to the CSS file.
Post Reply