• im having trouble with images take a look at my blog test site http://conservativeread.byethost7.com/ this theme is what i want. but with the hueman theme i cant shrink the images especially the first one on blog page is too big. so i want featured thumbnail images 200×200 is this possible? thanks in advance, hueman is the best free premium theme i have worked with. great job!

Viewing 1 replies (of 1 total)
  • 200x200px would not work very well with this theme as it would make the images very blurry, as they are upscaled and downscaled in size depending on screen resolution. By default the width is 345px for the medium thumbnails on the layout, if the content is 720px wide. However, they are actually 520px wide images that are downscaled, in order to look sharp on high-resolution devices.

    To change and experiment with thumbnail sizes, modify this function with a child theme in functions.php. Edit these values in alx_setup():

    add_image_size( 'thumb-medium', 520, 245, true );
    add_image_size( 'thumb-large', 720, 340, true );

    Read more how thumbnails work in WordPress here:
    http://codex.wordpress.org/Function_Reference/add_image_size

    Once you’ve changed to the thumbnail sizes you wish, and changes the way it crops as you wish, you need to run the regenerate thumbnails plugin once in order for old images to be re-cropped.

Viewing 1 replies (of 1 total)

The topic ‘trouble with thumbnail images’ is closed to new replies.