Metroid Wiki:Discussion Center: Difference between revisions

From Metroid Wiki
no edit summary
No edit summary
No edit summary
Line 118: Line 118:
==File namespace glitch==
==File namespace glitch==
Whenever I view a page in the file namespace, the wiki acts as if I'm not logged in. This doesn't happen when viewing the edit window or history. Anybody know what that's about? {{User:Twentytwofiftyseven/sig}} 21:00, 25 February 2010 (UTC)
Whenever I view a page in the file namespace, the wiki acts as if I'm not logged in. This doesn't happen when viewing the edit window or history. Anybody know what that's about? {{User:Twentytwofiftyseven/sig}} 21:00, 25 February 2010 (UTC)
==infoboxes==
The code used in infoboxes could be greatly simplified if the following were added to the site's skin. {{User:Twentytwofiftyseven/sig}} 18:00, 14 March 2010 (UTC)
<pre>
.infobox tr:nth-of-type(odd) {
  background-color:#3b587e
}
.infobox tr:nth-of-type(even) {
  background-color:#1e1528
}
.infobox {
  font-family: arial, sans-serif;
  padding: 4px;
  margin: 0 0 1em 1em;
  font-size: 11px;
  border:1px solid #3b587e;
  background-color:#1e1528;
}
.infobox tr:first-of-type td {
  font-family:arial;
  font-size:13px;
  background-color:#3b587e;
}
</pre>