Difference between revisions of "Help:CSS Classes"
(bah wrong heading level) |
Tango12345 (talk | contribs) m (Quick-adding category "Wiki Administration" (using HotCat)) |
||
Line 100: | Line 100: | ||
|more text | |more text | ||
|} | |} | ||
+ | |||
+ | [[Category:Wiki Administration]] |
Revision as of 08:30, 5 June 2017
Contents
Classes
On this Wiki various 'classes' are set up in the CSS which allow standard types of coloured boxes etc to be created by calling the class instead of giving full information to make a table cell. The display effect and text required is shown below. Please note that these change according to which skin you are using. The main skins in use are TWC (default) and monobook, if you are designing anything complicated please check design in at least those two skins.
class="frontpage-wikinews"
{| |- | class="frontpage-wikinews" | TEXT HERE |}
TEXT HERE |
class="frontpage-generalmodding"
{| |- | class="frontpage-generalmodding" | TEXT HERE |}
TEXT HERE |
class="frontpage-m2tw"
{| |- | class="frontpage-m2tw" | TEXT HERE |}
TEXT HERE |
div class="section"
Nice simple one this for standard TWC looking boxes.
<div class="section"> Text Here </div>
Text Here
class=".infobox"
Info boxes appear to require a style section as well, "infobox bordered" will give internal cell division lines whereas "infobox" doesn't. (need to add section on positioning these correctly)
{| class="infobox bordered" style="margin:0.5em auto; " |- |- |TEXT HERE |- |more text |} |}
TEXT HERE |
more text |
{| class="infobox" style="margin:0.5em; " |- |TEXT HERE |- |more text |}
TEXT HERE |
more text |