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
!importantflags 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.
- Go to Online Store β Theme β Edit code.
- 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

