Itworx4me Well-known member Nov 24, 2013 #1 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: Nov 24, 2013
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
Jeremy in memoriam 1991-2020 Nov 24, 2013 #3 I don't have access to the inspector right now to tell you the CSS selector, but you can use text-transform: capitalize; to accomplish that. https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform Upvote 0 Downvote
I don't have access to the inspector right now to tell you the CSS selector, but you can use text-transform: capitalize; to accomplish that. https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform
Jeremy in memoriam 1991-2020 Nov 25, 2013 #4 Add the following CSS to EXTRA.css: Code: .messageUserInfo .userText .username { text-transform: capitalize; } Will capitalize each word in a username. Upvote 0 Downvote
Add the following CSS to EXTRA.css: Code: .messageUserInfo .userText .username { text-transform: capitalize; } Will capitalize each word in a username.