Title: Post Thumbnails changed after update
Last modified: August 22, 2016

---

# Post Thumbnails changed after update

 *  [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/)
 * After the update, my post thumbnail images are distorted and larger than they
   should be, one is cutoff at the bottom. I can’t seem to fix this. [SITE LINK](http://www.aandsmobileauto.com/category/helpful-tips/)

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/page/2/?output_format=md)

 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441757)
 * I am changing the site back to v 3.1.24 and my DEV Site is running 3.2.2. Please
   if anyone has a solution.
 * [SITE LINK](http://youneedthissite.com/aandsmobileauto/category/helpful-tips/)
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441763)
 * Update: If you look at the Post Thumbnail Images on my original post you will
   see they are showing correctly, running 3.1.24. On the Dev Site (link on 2nd 
   post) the Thumbnails are distorted and oversized, running 3.2.2.
 *  Theme Author [presscustomizr](https://wordpress.org/support/users/nikeo/)
 * (@nikeo)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441768)
 * Spot on [@questas_admin](https://wordpress.org/support/users/questas_admin/)!
   Thanks for reporting this. I just fixed this issue in the next version of the
   theme coming in the next days.
    Thanks for this contribution. 🙂
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441770)
 * Thanks, Do you have a temporary fix in the meantime? PHP or CSS?
 *  Theme Author [presscustomizr](https://wordpress.org/support/users/nikeo/)
 * (@nikeo)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441778)
 * You can fix it with this code PHP + Javascript to paste in your functions.php:
 *     ```
       add_action('wp_footer' , 'fix_my_thumbnails');
       function fix_my_thumbnails() {
       ?>
       jQuery(function($) {
       	$('.tc-thumbnail img').each(function() {
       		if ( ! $(this).attr('style') )
       			return;
       		$(this).css('min-width', '270px')
       			.css('min-height', 'inherit')
       	} );
       })
       <?php
       }
       ```
   
 * Cheers
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5441794)
 * That didn’t seem to fix it. I’ll wait for the update I guess. I placed that in
   the childtheme php file.
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442031)
 * Just updated to 3.2.3 and having the same problem with the post thumbnail images.
   Sorry Nikeo but that code snippet didn’t work either. I cannot update main site
   till this is fixed.
 * [SITE LINK](http://youneedthissite.com/aandsmobileauto) for dev site
 *  Theme Author [presscustomizr](https://wordpress.org/support/users/nikeo/)
 * (@nikeo)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442032)
 * Hi questas_admin, it might be a problem of thumbnail size : the theme works well
   with images with an height of at least 250px.
    I hope this helps
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442040)
 * The image sizes are: Car; 270×160, ck engine; 263×191, broken; 300×290, lovemycar;
   148×187, thermostat; 215×215.
 * If you look on the main site [LINK](http://aandsmobileauto.com) you will see 
   the post thumbnail images are displaying perfectly. That site has not been upgraded.
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442048)
 * OK using FIREBUG, I was able to change the “element.style” settings “min-height”&“
   min-width” down to 100px each which made my post thumbnail images show properly(
   or at least the one I selected with FIREBUG) so as I see it it is the minimum
   setting causing the difficulties.
    What I don’t know how to do is incorporating
   that into my childtheme as the selector is “ELEMENT.STYLE” There are other selectors
   on the left (I think) but I don’t know how to use them. I took a printscreen 
   shot of the site with FIREBUG on the bottom and here is the link to that image.
   What or how do I add to my stylesheet to change the min-height/width. I don’t
   think I use “element.style {” as the selector. Any help would be greatly appreciated.
   Thank You.
 * [LINK TO IMAGE](http://youneedthissite.com/aandsmobileauto/style-question/)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442049)
 * “element.style” is something specific to firefox and so you cannot use it in 
   your stylesheet. If you want to create your own CSS rules then look at the HTML.
   You see the classes on the image element?
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442050)
 * Looking at it I have “section class””div class”, another “div class” then “a 
   class”
 * I don’t know how to use these in css. I know (.round-div) is part of the thumbnail
   images and it is showing on the left side, and I have tried to use that to change
   the min-ht/wd but it didn’t work.
    Whenever I get a selector on the right side
   I know how to change the css, but not when it says “ELEMENT”
 * I hope I am making sense. If you could look at the image I made available you
   will see what I am seeing.
 * Thanks
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442051)
 * > Whenever I get a selector on the right side I know how to change the css, but
   > not when it says “ELEMENT”
 * Oh okay, so there are already styles applied to the “element.style” bit?
 *  Thread Starter [David_G](https://wordpress.org/support/users/questas_admin/)
 * (@questas_admin)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442052)
 * yes, from the theme
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/#post-5442053)
 * I see. I can’t seem to connect to your website any more [http://www.aandsmobileauto.com/category/helpful-tips/](http://www.aandsmobileauto.com/category/helpful-tips/)

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/page/2/?output_format=md)

The topic ‘Post Thumbnails changed after update’ is closed to new replies.

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

## Tags

 * [niclook](https://wordpress.org/support/topic-tag/niclook/)

 * 24 replies
 * 3 participants
 * Last reply from: [David_G](https://wordpress.org/support/users/questas_admin/)
 * Last activity: [11 years, 6 months ago](https://wordpress.org/support/topic/post-thumbnails-changed-after-update/page/2/#post-5442068)
 * Status: not resolved