You see the problem – between the top bar of the site and the content there is a lot of wasted white space. The code below is said to work. Oddly, the space isn’t showing in the customizer…!
body.blog .content-area {
padding-top: 0px;
}
You see the problem – between the top bar of the site and the content there is a lot of wasted white space. The code below is said to work. Oddly, the space isn’t showing in the customizer…!
body.blog .content-area {
padding-top: 0px;
}
You see the problem – the image you chose is partly hidden behind the page title or post title. This code is tested with Twenty Fourteen. You need to add it to your custom CSS file.
.full-width .site-content .has-post-thumbnail .entry-header,
.full-width.singular .site-content .hentry.has-post-thumbnail,
.site-content .has-post-thumbnail .entry-header {
margin-top: 0;
}
You see the problem – the image you chose is narrow so, on a computer screen, it has a nasty grey background. This code is tested with Twenty Fourteen. You need premium or business to make it permanent – but you can try it using your CUSTOMIZE option on a free blog.
body.blog .content-area {
padding-top: 0px;
}
.post-thumbnail {
background: none;
text-align: center;
}