Adding Space on top and bottom of policy page

How do I add some space on the page for my policy pages? It does this on all of them. I just want a couple of lines of space on the top and the bottom. I’m using the kingdom theme.

Hello @cdaleh ,

Hope you are doing well.

You need to add some custom CSS code to your theme file to add space. Can you please share your store URL so that I can send you the code that you can add to your theme file and make it work as you needed?

Hi @cdaleh ,

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

.shopify-policy__container{
	max-width: 100% !important;
	padding: var(--compact-header-padding) var(--horizontal-padding) !important;
}

Hope it helps!

1 Like