How do I add more gab on top of "Contact Us"? - Dawn Theme

Topic summary

A user seeks to add more spacing (gap) above the β€œContact Us” heading on their Shopify store using the Dawn theme.

Solution Provided:

  • Navigate to Online Store β†’ Theme β†’ Edit code
  • Locate and open the theme.css or base.css file
  • Add CSS code targeting the main page title class with padding-top and margin-bottom properties
  • The suggested code uses !important flags to override existing styles

Status: A working solution with visual proof (screenshot) has been provided. The issue appears resolved, pending confirmation from the original poster.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

URL: https://www.meta25.studio/pages/contact-us

Hi @randytheasian

  1. Go to Online Store β†’ Theme β†’ Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
h1.main-page-title.page-title.h0 {
    padding-top: 25px !important;
    margin-bottom: 23px !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

1 Like