XF 2.2 Remove user text from navigation

Abraham54

Well-known member
How to remove user text from navigation?
How to remove search tab text?

See what is possible in Doh's Fore

Screenshot 2022-05-07 at 13-11-04 PiepCompSupport.webp

My new standaardstyle, as a child of the Default XenForo theme, must have this feature, if possible.
 
Solution
Add to the extra.less template.

Less:
.p-navgroup-link
{
    &--user .p-navgroup-linkText,
    &--search .p-navgroup-linkText,
    {
        display: none;
    }
}
Top Bottom