Change Collection Title font size on SENSE theme

Hi,

If you want to change the collection title font size, please go to

Online Store > Actions > Edit code > Assets > component-collection-hero.css.

*Note: The component-collection-hero.css is located under Assets.

Please add the following code in to the component-collection-hero.css file.

.collection-hero__title {
  font-size: 24px;
}

If you know how to modify css code, please find collection-hero__title class and just add the font size (font-size: 24px;) and change the size (24px) for your needs.

It will be as below.

.collection-hero__title {
  margin: 2.5rem 0;
  font-size: 24px;
}

Please don’t forget to add the semicolon (:wink: after (number)px.

If you have any questions, please let me know.

Hope it helps.

Thanks.

1 Like