Topic on Project:Support desk

How to remove alphabetical headers in category pages?

3
45.79.106.27 (talkcontribs)

Hi, I want to learn how to hide/remove the alphabetical headers used as sorting keys (the capitalized A, B, etc.) in every category page. When I just put a few pages in one category, these sorting keys are too distracting. I would rather see those pages in one single bullet list. Any help would be appreciated.

87.123.27.202 (talkcontribs)

That is possible with CSS. Try putting the following CSS styles on the wiki page MediaWiki:Common.css in your wiki:

/* Hide letter headlines on category pages */
div.mw-category-group h3 {
   display: none;
}
2003:CA:F16:D500:AE7:E79A:EAE:A117 (talkcontribs)

Probably the css classes changed which is why it did not work for me as posted above.

It does work for me though if I use "mv-category-generated".

div.mw-category-generated h3 {
   display: none;
}
Reply to "How to remove alphabetical headers in category pages?"