S Sperber Well-known member Sep 25, 2018 #1 Anyone know how to remove the wording there? I have so many tabs for other addons, that I am running out of space..
Anyone know how to remove the wording there? I have so many tabs for other addons, that I am running out of space..
Ben44 Active member Sep 25, 2018 #2 This addon by BassMan does that. https://xenforo.com/community/threads/cxf-top-navigation-paid.148762/ Upvote 0 Downvote
This addon by BassMan does that. https://xenforo.com/community/threads/cxf-top-navigation-paid.148762/
Russ Well-known member Sep 26, 2018 #3 You can just add this into your extra.less to hide the the text over there: Code: .p-nav-opposite .p-navgroup-linkText { display: none; } Or to hide everything but the account text: Code: .p-nav-opposite .p-navgroup-linkText { display: none; } .p-nav-opposite .p-account .p-navgroup-linkText { display: inline; } Upvote 0 Downvote
You can just add this into your extra.less to hide the the text over there: Code: .p-nav-opposite .p-navgroup-linkText { display: none; } Or to hide everything but the account text: Code: .p-nav-opposite .p-navgroup-linkText { display: none; } .p-nav-opposite .p-account .p-navgroup-linkText { display: inline; }
audio Member Jan 15, 2019 #4 Would this code work for what I am looking for also? I want to hide the text for everything but the account. I want to keep the name next to the avatar and just hide the text for inbox and alerts Upvote 0 Downvote
Would this code work for what I am looking for also? I want to hide the text for everything but the account. I want to keep the name next to the avatar and just hide the text for inbox and alerts
A AnzahTools Well-known member Jan 15, 2019 #5 Then you must use this: CSS: .p-nav-opposite .p-navgroup-link--conversations span { display: none; } .p-nav-opposite .p-navgroup-link--alerts span { display: inline; } Upvote 0 Downvote
Then you must use this: CSS: .p-nav-opposite .p-navgroup-link--conversations span { display: none; } .p-nav-opposite .p-navgroup-link--alerts span { display: inline; }
audio Member Jan 15, 2019 #6 ok this partially worked. It still show's the text "Alerts" Upvote 0 Downvote