• I am using 3.2, TwelveEleven “straight out of the box” but I don’t see any Page or Post Thumbnail option. function.php is showing that is added;i.e,add_theme_support(‘post-thumbnails’).

    Ideas?

Viewing 4 replies - 16 through 19 (of 19 total)
  • Awesome! It works now, thanks so much ??

    Thanks for this thread. I’m having a similar issue. Building a theme from the twentyeleven theme, but keeping a lot of the base-styles as close as I can to the original so I can take advantage of the html5 and mobile scalability.

    All the thumbnails in IE8 are showing up like a narrow 10 pixel wide image. These all show up in Firefox and Chrome just fine. It’s just IE (imagine that!). god I hate that browser! Why can’t Bill Gates get his browsers compliant! but I digress…

    I’ve looked at all the styles for the thumbnails and everything appears to be fine. not sure why it’s not forcing the width.

    I’ve also predefined the thumbnail in the functions.php

    with

    if ( function_exists( 'add_image_size' ) ) add_theme_support( 'post-thumbnails' );
    	if ( function_exists( 'add_image_size' ) ) {
    		add_image_size( 'cat-thumb', 150, 150 );
    		add_image_size( 'search-thumb', 100, 100, true );
    		add_image_size( 'home-thumb', 150, 150, true );
    		add_image_size( 'project-thumb', 504, 378, true );
    		add_image_size( 'head-thumb', 245, 166, true );
    	}

    I’ve also tried to force the img size using the classes that are embeeded in-line:

    .entry-content .entry-thumb img, .home .entry-thumb .wp-post-image img{
    	height: 100px;
    	width: 100px;
    	padding: 3px;
    }

    to no avail. I’m pretty sure it’s not a plugin conflict because everything is working fine in the other browsers.

    Any help is appreciated!

    Hey! I just found another thread (Here )that addressed a similar issue. The solution for my particular issue was to comment out this line in the styles.css and this did the trick!

    .entry-content img,
    .comment-content img,
    .widget img {
    max-width: 97.5%; /* Fluid images for posts, comments, and widgets */
    }

    Hy all, i have similar problem . The little difference is that i can’t see Featured image in right sidebar. Also screen option in top right of the screen doesn’t have Featured image option.
    In my child theme i’ve added this :

    add_theme_support( ‘post-thumbnails’ );
    set_post_thumbnail_size( 100, 100, true ); // hard crop mode true
    add_image_size( ‘twentyeleven-thumbnail-feature’, 100, 100);

    but featured image box still not visible ?? . Any ideas ?

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘Why don't I see Post Thumbnails in TwentyEleven theme’ is closed to new replies.