Title: [Plugin: Post Tiles] Plugin shows full size image?
Last modified: August 20, 2016

---

# [Plugin: Post Tiles] Plugin shows full size image?

 *  [filete](https://wordpress.org/support/users/filete/)
 * (@filete)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/)
 * Hi!
    really like your plugin, but having an hard time to show the feature image
   on the correct size.
 * In the posts I make sure to put the feature image with the size of the plugin
   sqaures 175x175px , but whatever I do, it just show a portion of the picture.
 * The plugin just shows the original image size.
 * Crazy!
 * [http://wordpress.org/extend/plugins/post-tiles/](http://wordpress.org/extend/plugins/post-tiles/)

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

 *  [TranCemaniak](https://wordpress.org/support/users/trancemaniak/)
 * (@trancemaniak)
 * [14 years ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682452)
 * is there no way to get the images resized to full view
    tumbnails?
 *  Plugin Author [ethanhackett](https://wordpress.org/support/users/ethanhackett/)
 * (@ethanhackett)
 * [14 years ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682479)
 * [@filete](https://wordpress.org/support/users/filete/) [@trancemaniak](https://wordpress.org/support/users/trancemaniak/)
   at the moment there isn’t any admin setting or short code option for choosing
   the image size. But if you’re brave enough to modify the plugin.
 * Somewhere around line 329
 * `$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'medium');`
 * You can change the word medium to any of the following – thumbnail, medium, large
   or full.
 * Maybe on the next version I can add this to the short-code and allow users to
   pick the size but default to medium.
 *  [JTraweek](https://wordpress.org/support/users/jtraweek/)
 * (@jtraweek)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682502)
 * Great plugin! I have the same problem, so I went ahead and batch re-sized all
   my featured images to fit within the 175×175 box. Now the issue is that the images
   are repeating in the areas where the image is smaller than 175px. In my browser
   css editor I see this for each list item that is created:
 * <li style=”background-image:….. background-repeat: initial initial;…>
 * In my browser I can change “initial” to “no-repeat”, and it fixes the problem,
   but I can not actually track down in the css or php files where that script is
   being generated. Adding “background-repeat: no-repeat” to ul#post-tiles li in
   the post-tile.css has no effect. Any clues?
 *  Plugin Author [ethanhackett](https://wordpress.org/support/users/ethanhackett/)
 * (@ethanhackett)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682503)
 * I need to go back over and update this plugin and take care of some of these 
   details.
 * In your theme css fils you can ad this.
 *     ```
       ul#post-tiles li {
       	background-repeat: no-repeat !important;
       }
       ```
   
 * And it should fix it. The other option would be to go into the post-tiles.php
   file and somewhere around line 332 you should see the following inline css generated.
 * `$featured_style = "style='background: url(".$url.") 0 0;' class='featured-image'";`
 * Change it to this
 * `$featured_style = "style='background: url(".$url.") <strong>no-repeat</strong
   > 0 0;' class='featured-image'";`
 * Both will fix it but I’d recommend adding the css in your css file because the
   plugin file will be overwritten when a new version of post tiles comes out and
   you will loose any customization.
 * I hope tha thelps.
 *  [JTraweek](https://wordpress.org/support/users/jtraweek/)
 * (@jtraweek)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682504)
 * Thanks for responding! That worked – I had tried the css option but forgot to
   add the “!important” part. Still learning this stuff….

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

The topic ‘[Plugin: Post Tiles] Plugin shows full size image?’ is closed to new 
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/post-tiles_ad9991.svg)
 * [Post Tiles](https://wordpress.org/plugins/post-tiles/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-tiles/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-tiles/)
 * [Active Topics](https://wordpress.org/support/plugin/post-tiles/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-tiles/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-tiles/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [JTraweek](https://wordpress.org/support/users/jtraweek/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-post-tiles-plugin-shows-full-size-image/#post-2682504)
 * Status: not resolved