Search found 1 match

by jack2smith1988
July 1st, 2012, 12:43 pm
Forum: GuMax 'How Do I' Questions
Topic: How do I hide the main page title
Replies: 10
Views: 13309

Re: How do I hide the main page title

MediaWiki does not have a built-in option to hide the main page title (see bug 6129), but you can use CSS to hide the title. Alternately, you can use the NoTitle extension. Method 1 (css) Add the following to MediaWiki:Common.css on your wiki: body.page-Main_Page h1.firstHeading { display:none; } If...