Mediawiki tips
From Neural Wiki
Hiding page names If I didnt want this page to display its name (Mediawiki tips)
1). I would log into my server
2). Go to my file manager,
3). Fo the the Public_html folder,
4). then to the Skins folder.
5). Since I am using the default monobook skin, I then click on the Monobook folder
6). Now I need to edit the cascading style sheet which gives monobook its look. I am using the default style sheet, named main.css so I would open it up
7). Now I need to add this line in the file. You can add this pretty much anywhere, just look for other bits of code and plop it in. Replace all spaces in the title with _
body.page-Mediawiki_tips h1.firstHeading { display:none; }
8). This would make this page title disappear. Now I haven't actually implemented this code for this page. But I did do it for the main page.
body.page-Welcome_to_Neural_Wiki h1.firstHeading { display:none; }
