How to change collection title font - Narrative theme

Trying to change the font size for all my collection titles but cant find any solutions.

any help would be appreciated.

Site: envsn.uk

Password: abc123

Never mind i have removed titles altogether.

However, is it possible to remove the space between the header and the products?

1 Like

Hi @Andrew_Neil ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
#shopify-section-collection-template .section-header {
    padding: 0 !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

@Andrew_Neil

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.list-collections-template .card__name {
    font-size: 18px;
}

.list-collections-template .card__info {
    padding: 0;
}

Perfect thank you mate!