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
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
.page-header h1 {
search for above text in rt-application and change font size as you want
font-size: 14px;
}
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!
@media (min-width: 1200px){
.container h1 {
font-size: 25px !important;
}
}
Add this code in theme.scss or theme.css
Thank you, worked!