Prestige Thema, How can i make the ad to cart button with uppercase letters?

Hi,

I am using the theme prestige and was wondering if anyone knows how to make the ad to cart button letters uppercase. Right now they are lowercase and i do not know how to change this.

Any help would be appreciated!

Hello @dilara1 ,

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.css-> paste bellow code in bottom of file
.ProductForm__AddToCart {
    text-transform: uppercase;
}

Thanks

2 Likes

You could try placing this code at the very bottom of theme.scss.css

.ProductForm__AddToCart{
  text-transform: uppercase;
}
2 Likes