CMR MediaWiki Skin: Difference between revisions
From charlesreid1
(Created page with "Explain how this stuff is laid out <table border="1"> <tr> <td colspan="3" width="600px">Banner/Logo</td> <td width="200px"> * MediaWiki * Navigation * Links </td> </tr> <tr> <t...") |
No edit summary |
||
| (8 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
=Overview= | |||
==Screenshot== | |||
[[Image:ScreenshotMWSkinCMRWithoutBoxes.jpg|800px]] | |||
==Layout== | |||
The CMR skin uses tables to lay out the various page elements. For this reason, its layout is illustrated, quite literally, with the following HTML table example: | |||
<table border="1"> | <table border="1"> | ||
| Line 17: | Line 25: | ||
</td> | </td> | ||
<td colspan="3" width="600px"> | <td colspan="3" width="600px"> | ||
<p><table | <p><table style="border: 0px; border-bottom: solid 1px black;"><tr> | ||
<td style="border: solid 1px black;">Page</td> | <td style="border: solid 1px black;">Page</td> | ||
<td style="border: solid 1px black;">Action</td> | <td style="border: solid 1px black;">Action</td> | ||
| Line 24: | Line 32: | ||
<p>Wiki Page Content</p> | <p>Wiki Page Content</p> | ||
</td> | </td> | ||
</tr> | |||
<tr> | |||
<td colspan="4"><center>Footer</center></td> | |||
</tr> | </tr> | ||
<tr> | <tr> | ||
| Line 32: | Line 43: | ||
</tr> | </tr> | ||
</table> | </table> | ||
Here is the corresponding table HTML code: | |||
<pre> | |||
<table border="1"> | |||
<tr> | |||
<td colspan="3" width="600px">Banner/Logo</td> | |||
<td width="200px"> | |||
* MediaWiki | |||
* Navigation | |||
* Links | |||
</td> | |||
</tr> | |||
<tr> | |||
<td width="200px"> | |||
* MediaWiki | |||
* Action | |||
* Links | |||
</td> | |||
<td colspan="3" width="600px"> | |||
<p><table style="border: 0px; border-bottom: solid 1px black;"><tr> | |||
<td style="border: solid 1px black;">Page</td> | |||
<td style="border: solid 1px black;">Action</td> | |||
<td style="border: solid 1px black;">Links</td> | |||
</tr></table></p> | |||
<p>Wiki Page Content</p> | |||
</td> | |||
</tr> | |||
<tr> | |||
<td colspan="4"><center>Footer</center></td> | |||
</tr> | |||
<tr> | |||
<td></td> | |||
<td></td> | |||
<td></td> | |||
<td></td> | |||
</tr> | |||
</table> | |||
</pre> | |||
[[Category:Programs]] | |||
[[Category:MediaWiki]] | |||
Latest revision as of 06:58, 25 May 2012
Overview
Screenshot
Layout
The CMR skin uses tables to lay out the various page elements. For this reason, its layout is illustrated, quite literally, with the following HTML table example:
| Banner/Logo |
|
|||||
|
Wiki Page Content |
|||||
Here is the corresponding table HTML code:
<table border="1"> <tr> <td colspan="3" width="600px">Banner/Logo</td> <td width="200px"> * MediaWiki * Navigation * Links </td> </tr> <tr> <td width="200px"> * MediaWiki * Action * Links </td> <td colspan="3" width="600px"> <p><table style="border: 0px; border-bottom: solid 1px black;"><tr> <td style="border: solid 1px black;">Page</td> <td style="border: solid 1px black;">Action</td> <td style="border: solid 1px black;">Links</td> </tr></table></p> <p>Wiki Page Content</p> </td> </tr> <tr> <td colspan="4"><center>Footer</center></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> </table>