Question

Button Capitalization

  • 16 November 2022
  • 1 reply
  • 21 views

Badge

Part of our style guide is to have buttons in all caps. Yes, I know there is an accessibility issue. Is there CSS or a class element that I can add to our buttons to make them all caps automatically? I don’t want to use my caps lock key. Thank you.


1 reply

Userlevel 2
Badge

Hey there @rhodesm! Here’s a piece of CSS that you can add within your Script Manager that will apply an all caps format of text onto all your pages. Note this applies only to standard buttons and not submit buttons associated with forms in the Classic Builder.

 

Let me know if this helps!

 

<style>

 

  a.lp-pom-button * {

 text-transform: uppercase;

  }

</style>

Reply