Thanks.
I think this might overwrite an adjustment I already made.
Basically my site has three pages types:
– the homepage with the blogroll grid
– submenu pages from the category links (this is the page type I’m referring to in this post, where I want to move the page title down to be closer to the submenu grid)
– content pages
It seems that the #main padding command works for the spacing in the grid, (so the homepage and content pages now work how I’d like them to) but the page title exists in a separate div above this.
My site is emilyblandford.com, hopefully that helps in context.
I currently have the following custom CSS to change the spacing:
#main {
display: block;
padding: 30px 0px 0;
}
@media only screen and (min-width: 768px) {
#main {
padding-top: 240px;
}
#site-logo {
padding-top: 80px;
padding-bottom: 0px;
}
.entry-main {
padding-top: 0px;
}