(Squarespace) Change heading 2 size on mobile only

To change heading 2 (h2) size on Mobile only.

You can use this code to Custom CSS box.

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

Result

1 Like