MyBB Community Forums

Full Version: Make the {$lang->welcome_back} render out in ALL CAPS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys

How can I make the {$lang->welcome_back} variable render out in ALL CAPS?
My page is setup so that it just says the username instead of welcome back username etc, Because of this I want it to display usernames all in caps as it will look much better with the type of theme im going for.

Thanks!
you can try using style property like below in the global.css of the theme
span.welcome  {text-transform: uppercase;}
css selector name might be different in your theme
(2015-02-22, 09:15 AM).m. Wrote: [ -> ]you can try using style property like below in the global.css of the theme

span.welcome  {text-transform: uppercase;}
css selector name might be different in your theme

Worked, And I used a div with an id instead of the default span.welcome to fit my theme.