Welcome to Assassin's Creed Wiki! Log in and join the community.
User talk:Skye Hattori: Difference between revisions
Jump to navigation
Jump to search
imported>Wikia Welcome to Assassin's Creed Wiki! |
imported>Vatsa1708 →Re:Era: new section |
||
| Line 1: | Line 1: | ||
{{Welcome}} | {{Welcome}} | ||
Feel free to contact me on my talkpage if you need anything. -- [[User:Amnestyyy|Amnestyyy]] ([[User_talk:Amnestyyy|Talk]]) 19:44, December 21, 2012 | Feel free to contact me on my talkpage if you need anything. -- [[User:Amnestyyy|Amnestyyy]] ([[User_talk:Amnestyyy|Talk]]) 19:44, December 21, 2012 | ||
== Re:Era == | |||
Assuming [[w:c:zephyrosphoenix|this is your wiki]], the eraicons require some [[w:c:zephyrosphoenix:MediaWiki:Common.js|JS]] | |||
<pre> | |||
//**************// | |||
/* Era-icons */ | |||
//************// | |||
function loadFunc() { | |||
showEras('title-eraicons'); | |||
showEras('title-shortcut'); | |||
} | |||
function showEras(className) { | |||
if( skin == 'oasis' ) { | |||
return; | |||
} | |||
if( typeof( SKIP_ERAS ) != 'undefined' && SKIP_ERAS ) | |||
return; | |||
var titleDiv = document.getElementById( className ); | |||
if( titleDiv == null || titleDiv == undefined ) | |||
return; | |||
var cloneNode = titleDiv.cloneNode(true); | |||
var firstHeading = getFirstHeading(); | |||
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]); | |||
cloneNode.style.display = "block"; | |||
} | |||
</pre> | |||
And a [[w:c:zephyrosphoenix:MediaWiki:Common.css|CSS]] | |||
<pre> | |||
/**********************************/ | |||
/* Era hack */ | |||
/**********************************/ | |||
#title-eraicons { | |||
display: block !important; | |||
text-align: left; | |||
margin-left: 0.5em; | |||
min-width:300px; | |||
} | |||
</pre> | |||
Change the id in the code or the template.. --{{User:Vatsa1708/sig}} 04:22, December 22, 2012 (UTC) | |||
Revision as of 06:22, 22 December 2012
Welcome to the Order, Skye Hattori! |
Welcome to the Assassin's Creed Wiki!
We hope you enjoy your stay, and we look forward to working with you! |
| Have you something to say? |
|
We seek unity, stability and order. |
|
| We wish you safety and peace on your future endeavors. Happy Editing! |
Feel free to contact me on my talkpage if you need anything. -- Amnestyyy (Talk) 19:44, December 21, 2012
Re:Era
Assuming this is your wiki, the eraicons require some JS
//**************//
/* Era-icons */
//************//
function loadFunc() {
showEras('title-eraicons');
showEras('title-shortcut');
}
function showEras(className) {
if( skin == 'oasis' ) {
return;
}
if( typeof( SKIP_ERAS ) != 'undefined' && SKIP_ERAS )
return;
var titleDiv = document.getElementById( className );
if( titleDiv == null || titleDiv == undefined )
return;
var cloneNode = titleDiv.cloneNode(true);
var firstHeading = getFirstHeading();
firstHeading.insertBefore(cloneNode, firstHeading.childNodes[0]);
cloneNode.style.display = "block";
}
And a CSS
/**********************************/
/* Era hack */
/**********************************/
#title-eraicons {
display: block !important;
text-align: left;
margin-left: 0.5em;
min-width:300px;
}
Change the id in the code or the template.. --VATSA (TALK • GENTEK) 04:22, December 22, 2012 (UTC)

