Topic on Project:Support desk

Category tags list on top of the pages?

3
S0ring (talkcontribs)

Is it possible to get the Category tags list on top instead on the bottom of the pages?

Jonathan3 (talkcontribs)

I guess you could shift it with jQuery.

S0ring (talkcontribs)

Indeed it works with Javascript, for example just add in MW1.31 these lines to MediaWiki:Common.js

var contentElement = document.getElementById("content"); 
var categoryElement = document.getElementById("categories"); 
contentElement.parentNode.insertBefore(categoryElement, contentElement);
Reply to "Category tags list on top of the pages?"