Topic on Project:Support desk

How to disable grouping of categories by sort key on a category page?

3
Summary by Redponey

The solution was the add CSS code to Common.css to hide the header tag for the sorted category groupings.

Redponey (talkcontribs)

I want to disable the grouping of categories by their sort key on a categories page. I still want the sorting to happen, but not have the separate sections with headers for each key (i.e. there should be no big letter "A" in front of all the pages that start with the letter A).

I've looked at the Category documentation and talk page and searched the manual and

AhmadF.Cheema (talkcontribs)

In your MediaWiki:Common.css, add:

#mw-content-text > div.mw-category-generated > #mw-pages > div > h3 { display: none; }
Redponey (talkcontribs)

That did the trick, thanks!!!