Last quick question,
How can I add padding to the top and bottom of my blog post pages?
Thanks!
Last quick question,
How can I add padding to the top and bottom of my blog post pages?
Thanks!
Hi there,
Please try this code in the Global CSS:
.page .x-main.left .hentry .entry-featured,
.single-post .x-main.left .hentry .entry-featured {
margin-top: 0;
margin-bottom: 0;
}
Hope this helps.
I need to move everything down, more, and if i add 60px to the margins, it only moves the primary article. I need all the content to have about 65px margin on top and bottom of the page.
Hello @piexec,
Thanks for updating the thread. 
Looks like you are looking to move content and right sidebar simultaneously. In that case, please add following CSS under Pro > Theme Options > CSS:
.x-container>.offset {
margin-top: 70px;
margin-bottom: 70px;
}
I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
Suggest you to watch following video that will help you to get started with CSS.
In above code that I have shared
x-container>.offsetis called as the selector. Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
Thanks.
Excellent. Thanks. I’ll watch those videos.