Remove Single Blog Image and Author
-
How can I remove Single Blog Featured Image looking huge and the author.
Hello,
Please provide the page URL, I will provide custom CSS to remove it.
Best Regards
Here if is. How can I remove Single Blog Featured Image looking huge and the author.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.wd-entry-meta .meta-author {
display:none;
}
.post-img-wrapp{
display:none;
}
.blog-design-masonry.blog-style-shadow .article-body-container {
padding-top:80px;
}
If we remove the date we can make the height of all the blocks equal.
Best Regards
Hi,
I meant inside a single blog post, to remove the huge image on top. Not on the complete blog masonry.
Hello,
Please replace the code provided above with this one:
.post-single-page.has-post-thumbnail .article-inner>.entry-header {
display:none;
}
Best Regards
How can I hide the date on single blog posts?
How can I hide the date on single blog posts?
How can I hide “continue reading” on blog archive?
How can I hide the date on single blog posts?
How can I hide “continue reading” on blog archive?
How can I hide date on blog archives?
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.blog-post-loop .wd-entry-content .read-more-section {
display:none;
}
.wd-post-date.wd-style-with-bg {
display:none;
}
Best Regards
How can I remove category title and comments from blog archive?
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .wd-post-cat.wd-style-with-bg{
display:none;
}
I do not see the comments on the single post.
Best Regards
I want to remove comments on the blog archive. See in private section link.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .wd-entry-meta .meta-reply {
display: none;
}
Best Regards