• Hello,

    I can’t change my thumbnail size for some reason…

    i tried:

    set_post_thumbnail_size( 300, 270 );

    adding a class to it and then do this

    add_image_size( ‘thumbs_home’, 300, 270);

    none work.. any ideas ??? the size is now 107.. and i don’t find that in my theme its css file..

    css in real time gives me this

    img[width=107] {
    width: 107px;
    }
    img[height=107] {
    height: 107px;
    }

    Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter Jonas_

    (@jonas_)

    Okay, but i just found out that i can use

    the_post_thumbnail(
    	 			'thumbnail',
    	 			array(
    	 				'class' => ..,
    	 				'alt'	=> ..,
    					'title'	=> ..
    				)
    	);

    this works fine, also if i use full = 300×300.. that works fine!!!

    But if i add something custom like ‘test’ instead of ‘thumbnail’

    and i have

    add_image_size( ‘test’, 170, 300);

    it doesn’t work

    Thread Starter Jonas_

    (@jonas_)

    Anyone???

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘thumbnail size won't change!! it says 107…’ is closed to new replies.