Hi there,
I want to capitalise an ‘i’ on button but I have global theme settings for buttons set to all lower case ‘aa’. Is this possible to change without editing these global settings?
Thanks
Hi there,
I want to capitalise an ‘i’ on button but I have global theme settings for buttons set to all lower case ‘aa’. Is this possible to change without editing these global settings?
Thanks
Hi,
I don’t see an option in the UI itself, but you can create a class and attach it to the button.
.text-capitalize{
text-transform: capitalize;
}
Hello everyone!
Interesting topic! Styling text areas is certainly an essential task.
Can you explain to me (little CSS experience) how the solution shown above is handled practically? Where can I define the class and how?
Hi! Sure!
.text-capitalize{ text-transform: capitalize; }