vishall Active member Licensed customer Feb 3, 2014 #1 Hello all, how to get the full username to show in the nav bar?
Chris D XenForo developer Staff member Licensed customer Feb 3, 2014 #2 In EXTRA.css, add this: Code: .navTabs .navTab.account .navLink .accountUsername { max-width: 250px; } You may need to have a play with that number. It will work fine on large screens, but it will possibly cause issues on mobile. You can add a conditional to reduce that number on smaller screens if you want to. The end result is: Becomes: Upvote 0 Downvote
In EXTRA.css, add this: Code: .navTabs .navTab.account .navLink .accountUsername { max-width: 250px; } You may need to have a play with that number. It will work fine on large screens, but it will possibly cause issues on mobile. You can add a conditional to reduce that number on smaller screens if you want to. The end result is: Becomes:
vishall Active member Licensed customer Feb 3, 2014 #3 Great, thanks @Chris Deeming . Upvote 0 Downvote