Not planned Offer a title case option for phrases

Alternadiv

Well-known member
XenForo uses sentence case throughout the software.

My suggestion is to offer an option (or language) that will switch all phrases to title case.
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
I can say with some degree of certainty that this isn’t something we would dedicate resources to as it would involve modifying the majority of the several thousand phrases in the software.
 
Add to the extra.less template:

Less:
*
{
    text-transform: capitalize;
}

You will then need to override that so it doesn't affect messages, profile posts, conversations, etc..
This does forum posts - you will need to identify the classes for other areas and add them.
Less:
.message-body
{
    text-transform: none;
}
 
Top Bottom