Would like to adjust size of headers across all pages

i would like to make all of the underlined headers smaller in size. the title for each page is far too large for the look i am going for. additionally i’d like to make the distance of white space between the title/header and the content of the page shorter, so they are closer together. i understand i likely have to mess with something within the code, but not specifically sure what.

@clothingbykier

For Adjust size of across all pages follow below steps :

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > section-main-page.css and paste this at the bottom of the file:
.main-page-title.page-title{
  font-size: 38px;
  margin-bottom: 20px;
}
#shopify-section-template--14413558808713__48440031-e567-4984-9608-abbd4a259476{
  margin-top: 0px;
}
.contact.spaced-section {
 margin-top: 0px;
}
.contact.spaced-section .title {
	margin-top: 20px;
}

This works well for your site.

Best Regards !