Make all buttons, text, everything lowercase on Colorblock

Hey, I’ve seen alot of these posts and tried basically all of them to no success. I’m trying to make everything on my site lowercase, including buttons like “Add to cart” or labels such as “Quantity”, or headers like “You may also like”. I just need everything lowercased. I’m using Colorblock. A few examples are below. Thanks!

Edit: The share button is easy to edit. Still having issues with the other ones though.

Hi,

Please add the code below to Assets/base.css.

body, a, p, h1, h2, h3, h4, h5, h6, div, span, button, label {
  text-transform: lowercase !important;
}

It will make “everything” (all text) lowercase.

If you don’t want to “force” them to be all lowercase, please use the code below.

body, a, p, h1, h2, h3, h4, h5, h6, div, span, button, label {
  text-transform: lowercase;
}

Hope it helps.

Thanks.

1 Like

Absolute legend.