Details of options on individual posts:
– enabled: large featured images at the top of single posts
– disabled: bread crumb/page title navigation
– featured image is hidden on this post
Yet there’s a big blank space at the top of the post, between the bottom of the navigation and the top of the post title. Any idea what’s up? Screenshot here:
https://dl.dropboxusercontent.com/u/5660/Scratch/Enfold_blank_space.jpg
Thanks!
Hey David!
Please add following code to Quick CSS
.single-post .content { padding-top: 5px; }
Regards,
Yigit
Thanks! Is there a long-term fix planned for this or will I always have to add this to Quick CSS?
Hey!
The real source of that space was this code you have in style.css:
h1, h2, h3 {
font-family: "adelle","Helvetica Neue","Helvetica","Arial",sans-serif;
font-weight: 900;
line-height: 1.1em;
margin-top: 1.5em;
}
I’d suggest removing that top margin on single view:
.single h1.post-title.entry-title {
margin-top: 0;
}
Cheers!
Josue
So add that to our style.css instead of using the Quick CSS snippet I got earlier?
Hey!
Yes, add that to style.css and remove the other snippet from Quick CSS.
Best regards,
Josue