Change Main Collection Display (Kalles Theme)

Topic summary

A user sought help modifying product title display on their Kalles theme collection page. The titles were capitalized by default and too large, causing truncation.

Initial Solution:

  • Custom CSS was provided to adjust font size (18px), remove capitalization (text-transform: none), and allow text wrapping (white-space: normal)
  • Code added via Customize > Theme settings > Custom CSS

Follow-up Issue:

  • Product prices appeared misaligned when titles spanned one versus two lines

Final Solution:

  • Additional CSS added setting minimum height for product titles (min-height: 35px)
  • This ensures consistent vertical alignment of prices across all products

Status: Resolved. Both formatting issues successfully addressed through custom CSS modifications.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

Hello,

Sorry if this is a basic one, but is anyone able to help me amend the display of my Product Title from the Main Collection page, please? It’s capitalised by default, and the text is too large so it doesn’t display the full Product Title.

Any help would be appreciated.

@joe-h-95

Can you share your shopify store URL?

Thanks!

Hi @joe-h-95 ,

Please send the website link, I will check it for you

Thanks for the reply. I’ve changed every heading size and none seem to change it

There’s a preview available here - https://hdl96ueno83i1dbr-72105885962.shopifypreview.com

Hi, there’s a preview available here - https://hdl96ueno83i1dbr-72105885962.shopifypreview.com

Hi @joe-h-95 ,

Please go to Customize > Theme settings > Custom CSS > add code:

.t4s-product .t4s-product-title {
    font-size: 18px;
    text-transform: none;
    white-space: normal;
}

Sorted, thank you so much

1 Like

Hi @joe-h-95 ,

You’re welcome :blush:

Hi @namphan ,

I’m back… :blush: is there any way I can format it so the price stays in line across all products whether there is one or two lines of text?

Hi @joe-h-95 ,

Please send me the preview link again, I will check it

Thanks! https://4fun8xge823cz2fm-72105885962.shopifypreview.com

Hi @joe-h-95 ,

Please add code:

.t4s-product .t4s-product-title {
    min-height: 35px;
}

Really appreciate it, thanks again @namphan

1 Like