Refresh Theme - Product Title and Vendor Title Uppercase on Product Card

Hi,

Is it possible to change the product title in the product cards on the Shopify Refresh theme to uppercase, to match how the vendor is displayed?

Hey @CallumD
Share your Store URL and Password if enabled

Hi Moeed,

https://kjfootcomfortshoes.myshopify.com/ Password: Password1

Thank you for your help :smiley:

Hey @CallumD

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset-> base.css and paste this at the bottom of the file:
.card-wrapper .full-unstyled-link {
    text-transform: uppercase;
}
.card-wrapper .caption-with-letter-spacing.light {
    text-transform: uppercase;
}

Hi @CallumD

  1. Go to the online store

  2. Edit the code and base.css file below paste the code :

.full-unstyled-link {
text-decoration: none;

color: currentColor;

display: block;

text-transform: uppercase;

}

Thank you for your help :smiley:

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.