|
|
Line 297: |
Line 297: |
| *Therefore the title has to span the two columns, hence the "colspan="2". | | *Therefore the title has to span the two columns, hence the "colspan="2". |
| *In addition, the title is centered and given a background color. | | *In addition, the title is centered and given a background color. |
| *Here is something new that you might not be familiar with: <nowiki>{{{title background color}}}</nowiki>. This is a parameter within the three sets of {{{ }}}. | | *Here is something new that you might not be familiar with: <nowiki>{{{title background color}}}</nowiki>. This is a parameter within the three sets of {{{}}}. |
| *Within the set of curly brackets {{{ }}} will appear the words that you will type in the navbox template that match the text within the {{{ }}}. | | *Within the set of curly brackets {{{}}} will appear the words that you will type in the navbox template that match the text within the {{{}}}. |
|
| |
|
| </p> | | </p> |
This page is under going major revision
Navboxes are nothing more than a table saved as a template. Navboxes are usually at the bottom of the article and usually only contain links to topics or locations. See the example at the bottom of this article.
Again an Navbox is a table. If you know how to create tables in Wikitext or HTML, it is not difficult. If you do not know Wikitext or HTLM, you will probably need someone who does to help you. If you would like to learn these two programs, see Wikitext or HTML Programming. Neither of these programming languages are difficult.
Step One - Create the table[edit | edit source]
- We are going to assume you know a little Wikitext and HTML in this tutorial. We will begin by creating a simple table. The coding will be displayed in both Wikitext and HTML side by side so can see the difference.
- It is recommended that you create infobox tables in HTML as there fewer problems as you will see.
- We will be creating a navbox as shown below. User:Ccsmith/sandbox/navbox
Links to {{{name}}} - related articles
|
- It does not look like much because you still have fill it in with the links or other information that you may want to display for your readers.
Here is the coding in HTML and Wikitext for the above Navbox:[edit | edit source]
Wikitext |
HTML |
{| style="width:100%; border:1px solid blue; border-collaspe:separate; border-spacing:5px; "
{{!}}-
{{!}} colspan="2" style="text-align:center; background-color:{{{title background color}}};{{!}} "Links to {{{name}}} - related articles
{{!}}-
{{#if:{{Ifempty|{{{group title1|}}}}}|
{{!}} style="text-align:right; width:15%; background-color:{{{left column background color}}};{{!}} "'''{{{group title1}}}'''|}}
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
{{!}} style="text-align:left; background-color:{{{right column background color}}}; ">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}} {{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}} {{#if:{{{group title1-item3|}}}{{·}}|{{{group title1-item3}}}{{·}}|}} {{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}} {{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}|}}
|}
|
<table style="width:100%; border:1px solid blue; border-collaspe:separate; border-spacing:5px; ">
<tr>
<td colspan="2" style="text-align:center; background-color:{{{title background color}}}; ">Links to {{{name}}} - related articles
</td>
</tr>
<tr>
{{#if:{{Ifempty|{{{group title1|}}}}}|
<td style="text-align:right; width:15%; background-color:{{{left column background color}}}; ">'''{{{group title1}}}'''|}}
</td>
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
<td style="text-align:left; background-color:{{{right column background color}}}; ">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}} {{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}} {{#if:{{{group title1-item3|}}}{{·}}|{{{group title1-item3}}}{{·}}|}} {{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}} {{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}|}}</td>
</tr>
</table>
|
- The coding is scrunched up so let us spread it out a bit and break down the table coding.
- First step is to create the table that will become part of the template:
Wikitext |
HTML |
{| style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; "
|
<table style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; ">
|
{{!}}-
{{!}} colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
{{!}} "Links to {{{name}}} - related articles
|
<tr>
<td colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
">Links to {{{name}}} - related articles
</td>
</tr>
|
{{!}}-
{{#if:{{Ifempty|{{{group title1|}}}}}|
{{!}} style="
text-align:right;
width:15%;
background-color:{{{left column background color}}};
{{!}} "'''{{{group title1}}}'''|}}
|
<tr>
{{#if:{{Ifempty|{{{group title1|}}}}}|
<td style="
text-align:right;
width:15%;
background-color:{{{left column background color}}}; ">
'''{{{group title1}}}'''|}}
</td>
|
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
{{!}} style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
|
<td>
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
<td style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
</td>
</tr>
|
|}
|
</table>
|
- Notice the table width is set at 100%.
- Second, the code for the border. You can make anything you want.
- Third, the "border-collaspe" coding is for creating a 5 pixel space between the cells of the table. Notice the two lines of code for this attribute.
Wikitext |
HTML |
{| style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; "
|
<table style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; ">
|
{{!}}-
{{!}} colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
{{!}} "Links to {{{name}}} - related articles
|
<tr>
<td colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
">Links to {{{name}}} - related articles
</td>
</tr>
|
{{!}}-
{{#if:{{Ifempty|{{{group title1|}}}}}|
{{!}} style="
text-align:right;
width:15%;
background-color:{{{left column background color}}};
{{!}} "'''{{{group title1}}}'''|}}
|
<tr>
{{#if:{{Ifempty|{{{group title1|}}}}}|
<td style="
text-align:right;
width:15%;
background-color:{{{left column background color}}}; ">
'''{{{group title1}}}'''|}}
</td>
|
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
{{!}} style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
|
<td>
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
<td style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
</td>
</tr>
|
|}
|
</table>
|
- This navbox has two columns. The first is for the group name such as Topic, Counties, Repositories, etc.
- The second column is for the items under the group title.
- Therefore the title has to span the two columns, hence the "colspan="2".
- In addition, the title is centered and given a background color.
- Here is something new that you might not be familiar with: {{{title background color}}}. This is a parameter within the three sets of {{{}}}.
- Within the set of curly brackets {{{}}} will appear the words that you will type in the navbox template that match the text within the {{{}}}.
Wikitext |
HTML |
{| style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; "
|
<table style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; ">
|
{{!}}-
{{!}} colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
{{!}} "Links to {{{name}}} - related articles
|
<tr>
<td colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
">Links to {{{name}}} - related articles
</td>
</tr>
|
{{!}}-
{{#if:{{Ifempty|{{{group title1|}}}}}|
{{!}} style="
text-align:right;
width:15%;
background-color:{{{left column background color}}};
{{!}} "'''{{{group title1}}}'''|}}
|
<tr>
{{#if:{{Ifempty|{{{group title1|}}}}}|
<td style="
text-align:right;
width:15%;
background-color:{{{left column background color}}}; ">
'''{{{group title1}}}'''|}}
</td>
|
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
{{!}} style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
|
<td>
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
<td style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
</td>
</tr>
|
|}
|
</table>
|
Wikitext |
HTML |
{| style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; "
|
<table style="
width:100%;
border:1px solid blue;
border-collaspe:separate;
border-spacing:5px; ">
|
{{!}}-
{{!}} colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
{{!}} "Links to {{{name}}} - related articles
|
<tr>
<td colspan="2"
style="
text-align:center;
background-color:{{{title background color}}};
">Links to {{{name}}} - related articles
</td>
</tr>
|
{{!}}-
{{#if:{{Ifempty|{{{group title1|}}}}}|
{{!}} style="
text-align:right;
width:15%;
background-color:{{{left column background color}}};
{{!}} "'''{{{group title1}}}'''|}}
|
<tr>
{{#if:{{Ifempty|{{{group title1|}}}}}|
<td style="
text-align:right;
width:15%;
background-color:{{{left column background color}}}; ">
'''{{{group title1}}}'''|}}
</td>
|
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
{{!}} style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
|
<td>
{{#if:{{Ifempty|{{{group title1-item1|}}}}}|
<td style="text-align:left; background-color:{{{right column background color}}};
">
{{#if:{{{group title1-item1|}}}|{{{group title1-item1}}}{{·}}|}}
{{#if:{{{group title1-item2|}}}|{{{group title1-item2}}}{{·}}|}}
{{#if:{{{group title1-item3|}}}|{{{group title1-item3}}}{{·}}|}}
{{#if:{{{group title1-item4|}}}|{{{group title1-item4}}}{{·}}|}}
{{#if:{{{group title1-item5|}}}|{{{group title1-item5}}}{{·}}|}}
|}}
</td>
</tr>
|
|}
|
</table>
|
Meaning of each line of the code[edit | edit source]
- Since navboxes usually extend from one side to the other, we have set the width for our navbox to 100%.
- We have installed a 1 pixel solid blue line around our navbox.
- "border-collaspe:separate; border-spacing:5px means we are placing a 5 pixel space between the boxes in the template. See Cell Separation for more details.
- The title of the navbox has to extend both columns of the navbox so that is coded with the colspan="2" code.
- When you save your navbox be sure include the word "navbox" in the title so people will know what kind of template it is for example: {{template:infobox sample}}.
Step Two - Create the template[edit | edit source]
- Since there is only one way to create a template in the Wiki, we will only show the Wikitext coding:
User:Ccsmith/sandbox/navbox
{{Navbox name
|title background color=
|left column background color=
|right column background color=
|name=
|group title=
|item1=
|item2=
|item3=
|item4=
|item5=
}} |
Example of an existing Navbox[edit | edit source]
Links to Missouri-related articles |
---|
| Topics | | | Counties | | | Extinct
Counties | | | Major
Repositories | | | Migration
Routes | |
|