Support » Theme: Spun » What if i dont want to resize the image in the circle

  • Resolved hdlarsson

    (@hdlarsson)


    Hi,
    I really like this theme and I have started modifying it to fit my content better but I can´t seem to find how to keep the aspect ratio of the images.

    I understand that all of the picture won´t show and I am fine with that. Please advice!

    Thanks,
    Henrik

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Caroline Moore

    (@sixhours)

    You may need to use a plugin like Regenerate Thumbnails to change existing post thumbnails to the theme’s new sizes.

    You can also change the thumbnail size and crop settings within set_post_thumbnail_size in a child theme:

    function my_new_thumbnails() {
       set_post_thumbnail_size( 260, 260, false );
    }
    add_action( 'after_setup_theme', 'my_new_thumbnails' );
    Thread Starter hdlarsson

    (@hdlarsson)

    Ok, thanks a lot! I never thought about the thumbnails being pre-generated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘What if i dont want to resize the image in the circle’ is closed to new replies.