XF 2.2 I need a navigation tab to do two things. Mainly open its link in a new window and second, preferably, the word Facebook be in a different color.

pateroosky

Member
I need the Facebook navigation tab to open its link in a new window and second, preferably the word Facebook be in a different color. Unfortunately, my coding skill is copy, mod, paste and pray... Hope this makes since. I have tried some stuff but obviously not doing it correctly. Thanks!Untitled.webp
 
The tab settings are correct and it's working when I just checked your site.

For the styling, add this to the extra.less template:
Less:
a[data-nav-id="Facebook"]
{
    color: orange;
}
 
Top Bottom