Justin
asked 11 years ago

On the home page, below every box of the blog post there are two links 1. Read more and  2. 0 comments . Now, my question is: how can I remove  this (2nd option) from the homepage.

3 Answers
Mark M
answered 11 years ago

Which theme?

Justin
replied 11 years ago

Wallpress

DominicStaff
answered 11 years ago

To resolve this problem you can add the following code to the style.css file.

 
.home .item-permalink {
display: none !important;
}

.home .comments-link {
display: none !important;
}

.sep {
display: none !important;
}

Regards,
Dominic

Justin
replied 11 years ago

But it removed both of them. I only want to remove the comment text

DominicStaff
answered 11 years ago

You can add the following code:


.home .comments-link {
    display: none !important;
}

Regards,
Dominic

himanshu Dhingra
replied 10 years ago

Thankyou so much, i was also looking for it.But I have one more problem, Basically i wanted to remove read more and comment so that the space that the post is taking gets reduced, but using your code comment and read more removed, but the space is still not cropped.Any help??

Powered by DW Question & Answer Pro