Title: berthok's Replies | WordPress.org

---

# berthok

  [  ](https://wordpress.org/support/users/berthok/)

 *   [Profile](https://wordpress.org/support/users/berthok/)
 *   [Topics Started](https://wordpress.org/support/users/berthok/topics/)
 *   [Replies Created](https://wordpress.org/support/users/berthok/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/berthok/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/berthok/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/berthok/engagements/)
 *   [Favorites](https://wordpress.org/support/users/berthok/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Pinbin] Resize PinBin Post Boxes on Blog Homepage](https://wordpress.org/support/topic/resize-pinbin-post-boxes-on-blog-homepage/)
 *  [berthok](https://wordpress.org/support/users/berthok/)
 * (@berthok)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/resize-pinbin-post-boxes-on-blog-homepage/#post-4775014)
 * It is possible to do this, I just changed mine to 250px. I did it with the following
   changes:
 * style.css
    #post-area .post { width: **250**px; background: #FFF; margin-right:
   10px; margin-top: 15px; } #post-area .post .pinbin-copy { padding-top: 10px; 
   padding-bottom: 10px; overflow: hidden; clear: both; width: **230**px; } #post-
   area .post .pinbin-date { width: 115px; color: #8e8e8e; font-size: 10px; border-
   bottom: 1px dotted #cccccc; padding-bottom: 0; padding-top: 0; } #post-area .
   post .pinbin-link a { text-decoration: none; background: #444; padding: 5px 10px;
   color: #fafafa; font-size: 12px; float: right; cursor: pointer; position: absolute;
   margin-left: **199**px; margin-top: -15px; }
 * functions.php
 *  add_theme_support( ‘post-thumbnails’ );
    add_image_size(‘summary-image’, **251**,
   9999); add_image_size(‘detail-image’, 750, 9999);
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Pinbin] How to remove featured image from post](https://wordpress.org/support/topic/how-to-remove-featured-image-from-post-3/)
 *  [berthok](https://wordpress.org/support/users/berthok/)
 * (@berthok)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-remove-featured-image-from-post-3/#post-4965758)
 * I have an inelegant solution for this:
 * Open up the single.php file in an editor.
 * Comment out the following line of code.
 * <div class=”pinbin-image”><?php the_post_thumbnail( ‘detail-image’ ); ?></div
   >
 * Should look like this when you’re finished:
 * <!–<div class=”pinbin-image”><?php the_post_thumbnail( ‘detail-image’ ); ?></
   div>–>

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