Template:Mbox: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| m (Mmh, hope this work.) | m (Added class for later styling) | ||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| <includeonly><center> | <includeonly><center> | ||
| {| style="border-style: solid; border-width: 5px; border-color: {{{colorborder|}}}; background-color:{{{colorbackground|}}}; color: {{{colortext|}}};" | {| class="mbox" style="{{#if:{{{floatright|}}}|float:right;|}} border-style: solid; border-width: {{{bwidth|5px}}}; border-color: {{{colorborder|}}}; background-color:{{{colorbackground|}}}; color: {{{colortext|}}};" | ||
| | style="vertical-align:middle; text-align:center;" | [[File:{{#if:{{{icon|}}}|{{{icon}}}|Imbox_deletion.png}}]] | | style="vertical-align:middle; text-align:center;" | [[File:{{#if:{{{icon|}}}|{{{icon}}}|Imbox_deletion.png}}]] | ||
| {{#if:{{{text|}}}|{{!}} style="vertical-align:middle;" {{!}} {{{text}}}|}} | {{#if:{{{text|}}}|{{!}} style="vertical-align:middle;" {{!}} {{{text}}}|}} | ||
| |} | |} | ||
| </center></includeonly><noinclude>{{Mbox/Doc}}</noinclude> | </center></includeonly><noinclude>{{Mbox/Doc}}</noinclude> | ||
Latest revision as of 12:12, 6 April 2024
What is {{Mbox}}
The {{Mbox}} template is a standard text box with an icon.
For example it is used in:
How to use
This template it most of all used to create other templates, there is no need to use this directly on a page.
That said, here are some examples:
{{Mbox
| icon = 
| colorborder = 
| colorbackground = 
| colortext = 
| text = 
}}
Suggested icons:
Examples
{{Mbox
| icon = 
| colorborder = 
| colorbackground = 
| colortext = 
| text = 
}}
|   | 
{{Mbox
| icon = Imbox_content.png
| colorborder = 
| colorbackground = 
| colortext = 
| text = This is a test.
}}
|   | This is a test. | 
{{Mbox
| icon = Imbox_notice.png
| colorborder = darkred
| colorbackground = red
| colortext = yellow
| text = This is also a test.
}}
|   | This is also a test. | 
You can also change the width of the border and float the box to the right:
{{Mbox
| icon = Imbox_notice.png
| colorborder = black
| bwidth = 2px
| floatright = yes
| colorbackground = blue
| colortext = yellow
| text = This is an extra test.
}}
|   | This an extra test. |