How to remove post area and text area

Hi Aigars, thanks for an amazing theme!

Please tell me how to remove the post area block from the index page and single post page. I just want my site to have images and categories, no text.

I uploaded a screenshot to show you the area I want removed.

Add this at the end of your style.css

#post-area .post .pinbin-copy {
  display: none;
}
.type-post, .type-page, .type-attachment, #post-area .post {
  border-right: none;
  border-bottom: none;
}
.pinbin-category {
  margin-top: -30px;
}
.pinbin-image img {
  margin-bottom: -6px;
}
.pinbin-copy {
  display: none;
}
.post-nav {
    display: none;
}

It will remove the entire post content and will leave just images for both front page and inner pages.

OMG! Thank you! It works perfectly.

One quick question, if I created a post with a post title and post content, it will be included in the post but it won’t be visible? Is that correct?

I wanna know if Google will still be able to see the text even though it’s not visible on the site.

Yes, content is still visible by Google since it is hidden just by using CSS and the content is still there. However, don’t using this content areas for blind keyword stuffing or some other shady things. It will get you nowhere.

Okay thanks. I wont use it for keyword stuffing, I just don’t want the text to be visible because it’s very distracting.

Can this be done for just a single sticky post? If so do you mind telling me how?

Thanks!