(Squarespace) Change font size of h4 on mobile

To change font size of h4 on mobile, you can use this code to Custom CSS box.

@media screen and (max-width:767px) {
h4 {
font-size: 30px !important;
}}

1 Like