Hi J,
- Tabs =/= Navigation addon.
- Is possible only by using Custom CSS, but not so easy becuse of "#" in ID section of each tab.
Start from:
ul.sppb-nav.sppb-nav-tabs > li > a::before {
content: "\f1cb";
font-weight: bold;
font-family: "Font Awesome 5 Brands";
}
Then consider using CSS :nth-child() Selector to set different 2nd, 3rd icon.
ul.sppb-nav.sppb-nav-tabs > li:nth-child(2) > a::before { ... }
ul.sppb-nav.sppb-nav-tabs > li:nth-child(3) > a::before { ... }
Remember that:
- SPPB use Font Awesome 5 Free
- Each Page has Custom CSS area.
- You got basic example code already.
- We don't teach CSS here.