All Collections
FAQ
Compatibility
How to make the letters uppercase
How to make the letters uppercase

Change the capitalization / Caps Lock

David Král avatar
Written by David Král
Updated over a week ago

If you want to make the text in your signature uppercase (in capital letters), please never change it directly in a user profile. Some servers could mark it as a spam.

You need to edit the signature HTML Source code a little bit.

  1. Go to section Signatures

  2. Select the template you want to edit

  3. Click on the Source button

  4. Now find the part of code (text) you want to make uppercase

  5. Add this piece of code as a CSS style of the element:

style="text-transform:uppercase;"

   6. For example the code is:

<div>{firstName} {lastName}</div>

   So you need to add this inside the first div element. The final code will be:

<div style="text-transform:uppercase;">{firstName} {lastName}</div>

If you're not sure about the process, please contact us via chat or write us an email.

Did this answer your question?