Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
// As done by Cologne Blue skin at Appearance tab of Preferences special page

// https://en.wikipedia.org/wiki/Special:Preferences#mw-prefsection-rendering

// https://en.wikinews.org/wiki/Help:User_style#Moving_categories_to_top
 
jQuery(function() {
  if (mw.config.get('wgCanonicalNamespace') === "Special") return;
  var cats = document.getElementById('catlinks');
  var bc = document.getElementById('bodyContent');
  if ( bc !== null ) {
    bc.insertBefore(cats, bc.childNodes[0]);
  }
});