Resize page title text only for mobile view

Hey bro you can reduce the Page title text size for mobile in the Dawn theme use this CSS

@media (max-width: 767px) {
  .page-title {
    font-size: 12px;  /* you can change the number to your desired size */ 
  }
}
1 Like