GazCBG

Registered
Hi,

How would I got about making the Account Tab Username length bigger, based on username size.
At the moment I have a 11 letter username and it only showing 4 letters and ...

Is it possible when in 800px + browsers size to make it bigger using somthing like max-width css.
If so how would I do this?
 
To remove the limit entirely:

Code:
.XenBase .navTabs .navTab.account .navLink .accountUsername {
  max-width: none;
}

To make it work on 800+ resolutions:

Code:
@media (min-width:800px)
{
.XenBase .navTabs .navTab.account .navLink .accountUsername { max-width: none; }
}

Additionally you can replace none with a value, like 200px, default XF ships out at 100px
 
Last edited:

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back