CMR MediaWiki Skin: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
The following table basically illustrates how the CMR skin is laid out. The CMR skin uses tables as the layout mechanism, and so it shows quite literally how the CMR skin is laid out. | |||
<table border="1"> | <table border="1"> | ||
| Line 32: | Line 32: | ||
</tr> | </tr> | ||
</table> | </table> | ||
The corresponding table HTML code looks like this: | |||
<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></td> | |||
<td></td> | |||
<td></td> | |||
<td></td> | |||
</tr> | |||
</table> | |||
</pre> | |||
Revision as of 06:41, 25 May 2012
The following table basically illustrates how the CMR skin is laid out. The CMR skin uses tables as the layout mechanism, and so it shows quite literally how the CMR skin is laid out.
| Banner/Logo |
|
|||||
|
Wiki Page Content |
|||||
The corresponding table HTML code looks like this:
<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></td> <td></td> <td></td> <td></td> </tr> </table>