Title: Thumbnail disable
Last modified: September 1, 2016

---

# Thumbnail disable

 *  Resolved [martyfoxx](https://wordpress.org/support/users/martyfoxx/)
 * (@martyfoxx)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/)
 * Hello, is it possible to disable thumbnail at mainpage at all? I’am using blog
   post as standard list – so one post per line and if I disable placeholders under
   thumbnail theme settings I still have a free area next to post preview on main
   page. I also tried disable comment count – no luck with that. I have no thumbnail
   set for any post. Thanks for help.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [Denzel Chia](https://wordpress.org/support/users/denzel_chia/)
 * (@denzel_chia)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/#post-7621312)
 * Hi,
 * You can use the following in your child theme style.css
    It will hide your post
   thumbnail and remove the “free area”.
 *     ```
       .home .post-thumbnail {
           display: none;
       }
       .home .post-inner {
           padding-left: 0 !important;
       }
       ```
   
 * Thank you
 *  [bdbrown](https://wordpress.org/support/users/bdbrown/)
 * (@bdbrown)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/#post-7621313)
 * Hi martyfoxx. Welcome to the Hueman forum. Try adding the following CSS to a 
   [child theme](http://docs.presscustomizr.com/article/239-using-a-child-theme-with-hueman)
   style.css file or a plugin like [https://wordpress.org/plugins/simple-css/](https://wordpress.org/plugins/simple-css/)
   or [https://wordpress.org/plugins/custom-css-js/](https://wordpress.org/plugins/custom-css-js/):
 *     ```
       /* remove post image */
       .post-standard img {
           display: none;
       }
       /* shift post content left */
       .post-standard .post-inner {
           padding-left: 0;
       }
       ```
   
 *  Thread Starter [martyfoxx](https://wordpress.org/support/users/martyfoxx/)
 * (@martyfoxx)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/#post-7621345)
 * Works like a charm, many thanks.
 *  [bdbrown](https://wordpress.org/support/users/bdbrown/)
 * (@bdbrown)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/#post-7621403)
 * You’re welcome. Please mark the topic as Resolved. Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Thumbnail disable’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/hueman/3.7.27/screenshot.png)
 * Hueman
 * [Support Threads](https://wordpress.org/support/theme/hueman/)
 * [Active Topics](https://wordpress.org/support/theme/hueman/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/hueman/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/hueman/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [bdbrown](https://wordpress.org/support/users/bdbrown/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/thumbnail-disable/#post-7621403)
 * Status: resolved