Hi Kim,
Thank you for reaching out to us. Different page types have different formatting for example on the category pages you’ve a header landmark however on other pages you shared do not have that, that’s why you’re seeing different spaces on different pages. Changing them would require custom CSS as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it.
- For category pages, you could add the following code in the Theme Options > CSS:
body.category .x-header-landmark {
margin-top: 50px;
}
- For the individual posts, you can make use of the following code:
.single .hentry {
margin-top: 0;
}
- For page, you can use the following:
body.page .x-container.offset {
margin-top: 50px;
}
Feel free to adjust the spacing as you need.
Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.
Don’t forget to clear all caches including your browser’s cache after adding the code. Hope this helps!