• Resolved butu007

    (@butu007)


    I have a problem with fetured image .
    The size of the image are too big. how can i change the size . I want to change the top slide images size , and the post images size that appear on my front page to be smaller .
    This is my site address :www.bloopp.com
    i found a part of the code that i need to change but nothing happens :
    functions.php

    if ( function_exists( ‘add_theme_support’ ) ) { // Added in 2.9
    add_theme_support( ‘post-thumbnails’ );
    add_image_size( ‘slider-post-thumbnail’, 770, 360, true ); // Slider Thumbnail
    add_image_size( ‘large-thumb’, 762, 360, true ); // Large Thumbnail for one column output
    add_image_size( ‘featured-thumb’, 362, 172, true ); // Featured Thumbnail for two column output
    add_image_size( ‘related-thumb’, 160, 160, true ); // Realted Post Image output
    add_image_size( ‘portfolio-thumb’, 270, 320, true ); // Realted Post Image output

    What else i need to change ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi.
    You found a right part of the code, but, when you change this values, already existing images would not changed, because they are already cropped with old dimensions, to resize this images you need to regenerate your thumbnails – this plugin can help. Also you need check your uploaded images initial sizes – if it are smaller, than appropriate theme image size dimensions – image will not be cropped for this size and paste into page with real size.

    P.S. Also I recommend you to create your own child theme for Bueno and make all possible changes in child theme.

    Thread Starter butu007

    (@butu007)

    Ok tenx i managed to resize them

    butu007: Can you help me?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘problem with featured image’ is closed to new replies.