The Charmed Comics Wiki
Advertisement

Since I am working on other wikias, I thought it might be useful to both me and other people who are starting wikias to include information about how I set them up.

COLAPSIBLE TABLES

  • Go to MediaWiki:Common.js If you don't know how to find this page as I didn't the first time I looked for it, then you should go to your user page and replace: User:Username with MediaWiki:Common.js
  • Once you find the page edit it and add:
    importScriptPage('ShowHide/code.js', 'dev');

TEMPLATES

  • For comic sites such as this, I need templates for infoboxs for comics, volumes, characters, objects, places, and many other things.
  • I also need templates for navigation and such.

OTHER

  • At the moment I forget what this is, but in MediaWiki:Common.css I put the following:
    /* default skin for navigation boxes */<br />table.navbox {<br />    background-color: #f9f9f9;<br />    border: 1px solid #aaa;<br />    clear: both;<br />    font-size: 90%;<br />    margin: 1em 0em 0em;<br />    padding: 2px;<br />    text-align: center;<br />    width: 100%;<br />}<br /> <br />table.navbox th {<br />    background-color: #ccf;<br />    padding-left: 1em;<br />    padding-right: 1em;<br />}<br /> <br />table.navbox tr:not(:first-child) th {<br />    background-color: #ddf;<br />}<br /> <br />@media print {<br />    .navbox {<br />        display: none;<br />    }<br />}<br /> <br />/* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */<br /> <br />div.Boxmerge,<br />div.NavFrame {<br />        margin: 0px;<br />        padding: 4px;<br />        border: 1px solid #aaa;<br />        text-align: center;<br />        border-collapse: collapse;<br />        font-size: 95%;<br />}<br />div.Boxmerge div.NavFrame {<br />        border-style: none;<br />        border-style: hidden;<br />}<br />div.NavFrame + div.NavFrame {<br />        border-top-style: none;<br />        border-top-style: hidden;<br />}<br />div.NavPic {<br />        background-color: #fff;<br />        margin: 0px;<br />        padding: 2px;<br />        float: left;<br />}<br />div.NavFrame div.NavHead {<br />        height: 1.6em;<br />        font-weight: bold;<br />        background-color: #ccccff;<br />        position:relative;<br />}<br />div.NavFrame p {<br />        font-size: 100%;<br />}<br />div.NavFrame div.NavContent {<br />        font-size: 100%;<br />}<br />div.NavFrame div.NavContent p {<br />        font-size: 100%;<br />}<br />div.NavEnd {<br />        margin: 0px;<br />        padding: 0px;<br />        line-height: 1px;<br />        clear: both;<br />}<br />a.NavToggle {<br />        position:absolute;<br />        top:0px;<br />        right:3px;<br />        font-weight:normal;<br />        font-size:smaller;<br />}
Advertisement