Community Central
Register
Community Central
This extension is enabled by default on Fandom.

Tabber allows you to add multiple tabs to a section of content, which can be toggled without having to reload the page. Note that Tabbers do not work on certain mobiles. See Broken mobile experience section below.

Tabber

An example of a tabber displaying the first tab

Step-by-step[]

  • Open an article for editing and switch to source editor.
  • Copy and paste the following code into your editor.
<tabber>
|-|First Tab Title=
First tab sample text.
|-|Second Tab Title=
Second tab content goes here.
|-|Third Tab Title=
Third tab content goes here.
</tabber>
  • Click "Preview" to see that the code produced these tabs:

First tab sample text.

Second tab content goes here.

Third tab content goes here.

  • Click "Back" to return to editing.
  • Edit your tabs by replacing the text of the titles and content with your community's content. For example, replace "First Tab Title" with "Characters," and replace the sample text with descriptions and images of your favorite characters. You can also change the number of tabs by adding or removing code.

Complex Tabbers[]

It is possible to create Tabbers with two or more sections, using two lines of text: {{#tag:tabber and {{!}}-{{!}}. {{!}}-{{!}} acts as a break for the original tag; creating the second, third, etc. tabbers. The tag itself is a new Tabber, functioning exactly like the Tabber shown above this section.

Example[]

Content one

Content two

Et cetera.

Content 4

Content 5

Content 6

Unlike normal Tabbers, these must be closed with }} at the end, for each Tab!

Code:

<tabber>
|-|Tabber One= 
{{#tag:tabber|1=
Content one

{{!}}-{{!}}
2=
Content two

{{!}}-{{!}}
3=
Et cetera.

}}
|-|Tabber Two=
{{#tag:tabber|4=
Content 4

{{!}}-{{!}}
5=
Content 5

{{!}}-{{!}}
6=
Content 6

}}
</tabber>

Usage information[]

  • Formatting: Keep in mind that the title should always end with an equal sign ("="), and the tab separator ("|-|") must always appear between tabs.
  • Wikitext: You can use any wikitext within your tabs, including templates and images.

Styling[]

.tabber {
    /* tabber wrapper style */
}
.tabber > .wds-tab__content.wds-is-current {
    /* tabber visible content */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab {
    /* tabber tabs */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab > .wds-tabs__tab-label {
    /* tabber tab labels */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab:hover {
    /* tabber tabs when being hovered */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab > .wds-tabs__tab-label:hover {
    /* tabber tab labels when being hovered */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab:active {
    /* tabber tabs when being clicked */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab > .wds-tabs__tab-label:active {
    /* tabber tab labels when being clicked */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab.wds-is-current {
    /* selected tabber tab */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab.wds-is-current:hover {
    /* selected tabber tab when being hovered */
}
.tabber > .wds-tabs__wrapper > .wds-tabs > .wds-tabs__tab.wds-is-current:active {
    /* selected tabber tab when being clicked */
}
.tabber > .wds-tabs__wrapper > .wds-tabs__arrow-right,
.tabber > .wds-tabs__wrapper > .wds-tabs__arrow-left {
    /* tabber arrows */
}

Issues[]

Broken mobile experience[]

A lot of the CSS and JavaScript that runs on your desktop/laptop cannot be applied on a mobile device. To counter this, Fandom has removed most of that code from the mobile skin - including the stuff that makes Tabber possible. As a result, mobile users won't see any of the visual cues that separate each set of information (The contents of the tabs will appear, just not separated into tabs).

There are problems with additional CSS and HTML hacks used as workarounds, which no amount of user-facing coding can solve. Therefore, that's a lot of effort for very little gain; you might as well use ordinary sections instead.

View/Edit tab content[]

Tabber does not provide a simple way to edit individual sections. This can be troublesome for inexperienced users that want to edit the content inside a tab. Additionally, people who use the VisualEditor will be unable to edit it without switching to source editor. Section headings within tabbers would retain their edit links, but those links would never point to the intended sections. Such headings would also be prevented from appearing in the Table of Contents.

Infoboxes[]

Tabber does not always display properly when put within an infobox. To counter this, a gallery may be used within an infobox to provide the same effect as the Tabber. When using Fandom standard portable infoboxes, a gallery can be passed directly to an image field to create tabbed images. For tabbing other content, infobox panels can be used. For more information, see Help:Infoboxes.

Parsing errors[]

With the upgrade to MediaWiki 1.39 some of the internals of the wikitext parser changed. One result was that the strip markers used by the wikitext engine grew in size, causing some pages to grow beyond the previously allowed unstrip size (5 million bytes). This caused the following message to be shown:

The article has become too complex and we can't render the component in this place. Reduce the size of this article to display all components.

The growth of the size of the strip markers was especially seen in the case when strip markers were nested, as was often the case with tabbers. Especially affected were pages with tabbers or galleries inside tabbers.

See also[]

Further help and feedback[]