Custom Tabs

xF1 Add-on Custom Tabs 1.6.3

No permission to download
Q: How to use phrases with Custom Tabs?
A: Use phrase:your_phrase as the tab title.

Q: How to make the main tab unclickable?
A: Use javascript:void(0) as the tab link.

Q: How to apply inline CSS styling?
A: Add each property one after the other separating them by a semicolon ( ; ) like so: font-weight: bold; text-decoration: underline; color: orange;

Q: Why child links don't show up when the parent tab is selected?
A: Try this code in EXTRA.css:
CSS:
.siropuCustomTab.selected .tabLinks {
    z-index: 1;
}
Top