XF 1.2 Need help with an Expression

Itworx4me

Well-known member
Licensed customer
I use Real Names on our site. I need to have an expression capitalizing the first letter of there first and last name when signing up for the site. Example: John Doe Can anyone help with this expression?

Thanks,
Itworx4me
 
Last edited:
Add the following CSS to EXTRA.css:
Code:
.messageUserInfo .userText .username {
  text-transform: capitalize;
}

Will capitalize each word in a username.
 
Back
Top Bottom