Button Text all Caps

Hi there,

Using gravity forms, I am needing the button to not be in all caps like my other buttons that are using PRO elements. See here: https://rrthewaycenter.wpengine.com/plan-your-visit/

The typography in the Customizer settings is not set to UPPERCASE, so any help there is apprecited.

Hello @tkcostello,

Thanks for writing in! The default button text in the theme using the uppercase. That is because of the built-in styling CSS:

.x-btn,
.button,
[type="submit"] {
  text-transform: uppercase;
}

You can modify the code above by settings the value to capitalize and then add CSS code into Pro > Theme Options > CSS. You can check out the CSS attribute in this article:

Feel free to make adjustments as you need. Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Intro to CSS - https://goo.gl/mFuWQT
How to get CSS selectors - https://goo.gl/BmoH39
Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
CSS Media Queries - https://goo.gl/L3ZHNg

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.