How can I change the header size of my collection title?

Hi there

I am trying to make the title text of the collection smaller. Currently its set to heading 1 but i want to make it as heading 3. Tried looking in a code but not sure where to edit it, theme.css?

Webiste : stockunion.co.uk

Pass : ubrania

2 Likes
.page-header h1 {
search for above text in rt-application and change font size as you want
    font-size: 14px;
}
1 Like

@rory123

Please add the following code at the bottom of your assets/rt-application.css file.

.template-collection .page-header h1 {
    margin: 0;
    font-size: 24px !important;
    font-weight: 400 !important;
}

Thanks!

2 Likes

@rory123

@media (min-width: 1200px){
.container h1 {
    font-size: 25px !important;
}
}

Add this code in theme.scss or theme.css

1 Like

Thank you, worked!