Welcome, Bluethunder213!Hello and welcome to Wookieepedia. I hope you like the place and choose to join our work. Here are a few good links for newcomers:
Wookieepedia aspires to be a reliable source for all Star Wars fans to read and draw information from, and as such, fan-created continuity and fan fiction are not allowed within our articles. All in-universe material must be attributable to a reliable, published source. Please do not remove talk page and forum comments, as they are part of the public record. Remember that you should always sign your comments on talk and vote pages using four tildes, like this: ~~~~. I hope you enjoy editing here and being a Wookieepedian! If you have any questions, see the help pages, add a question to the Senate Hall, visit our official IRC channel, or ask one of our administrators. May the Force be with you! |
RE: Hey
Hi Bluethunder213. Basically take a look at our MediaWiki:Common.js. You first need to import the functions.js by adding importScript('MediaWiki:Functions.js'); to the Common.js. Then onload initFunctionsJS(); by adding addOnloadhook( initFunctionsJS );. Then add
// BEGIN JavaScript title rewrite
function rewriteTitle() {
if( typeof( window.SKIP_TITLE_REWRITE ) != 'undefined' && window.SKIP_TITLE_REWRITE )
return;
var titleDiv = document.getElementById('title-meta');
if( titleDiv == null )
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
var node = firstHeading.childNodes[0];
// new, then old!
firstHeading.replaceChild(cloneNode, node);
cloneNode.style.display = "inline";
var titleAlign = document.getElementById('title-align');
firstHeading.style.textAlign = titleAlign.childNodes[0].nodeValue;
}
addOnloadHook( rewriteTitle );
Hope that helps. If you need any more help or it doesn't work just let me know. Cheers, Grunny (talk) 08:39, April 17, 2010 (UTC)
