Trying to reduce padding in rich text section header - Dawn theme

Hello,

I’m trying to reduce the bottom padding on a rich text section on Dawn theme. I’m probably going the wrong way about it but I’m removing the headers from my other section as they are too small and not centered. So, I’m using a rich text section header and hiding the small text and button. Unfortunately, I’m using Dawn 2.0 if I upgrade to 6.0 then there is an option to do this, but I can’t upgrade because I have made too many changes to the code. That’s another story.

Any help will be much appreciated

Hi @westernred ,

Go to Assets > base.css and paste this at the bottom of the file:

@media screen and (min-width: 750px) {
	#shopify-section-template--16504474206467__1659106696f4518634,
	#shopify-section-template--16504474206467__1659106696f4518634 .collage-wrapper.no-heading {
		margin-top: 5rem !important;
	}
	#shopify-section-template--16504474206467__16633261573bf56fe7 .rich-text {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}
}

You can change the number to your liking.

Hope it helps!