Hi All,
does anyone have any CSS to change the sign in button to uppercase? Chat GPT gave me this but it doesn’t work.
/* Change Sign In button text to uppercase */
.kn-button.signin {
text-transform: uppercase;
}
Thanks a lot!
Hi All,
does anyone have any CSS to change the sign in button to uppercase? Chat GPT gave me this but it doesn’t work.
/* Change Sign In button text to uppercase */
.kn-button.signin {
text-transform: uppercase;
}
Thanks a lot!
Here you go!
.kn-login-form form input[type="submit"] {
text-transform: uppercase;
}
Awesome, thanks!