I have built my post layout just the way I like it, but Wordpress is still putting a small Preview at the top of my posts - how can I get rid of that?
See attached image. Thank you!
Hi Marty,
Thanks for reaching out.
The image you are referring to is the Featured image of the specific post, you can remove that by deleting the Featured image from the post. But that will affect the other pages.
I would suggest you create a new Layout for the Single Post without Featured image and assign it to the Single posts or else you can remove that image by adding a few custom CSS codes into the Theme Options > CSS.
.single-post .entry-featured
{
display:none !important;
}
If you want to remove the Title too, please add the following code.
.single-post .entry-featured,
.single-post .entry-header
{
display:none !important;
}
Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide custom codes that mean we can’t fix it if it conflicts with something on your site nor will we enhance it.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.
