I need your help with the following theme.
http://www.korevolution.com/risorse-gratuite/free-wp-theme/koresponsive/
I want to change the size of the images on index page and also the size of image on each post.
I found the code below on functions.php and stylesheet.css,bust just editing it isnt enough.
Functions.php code
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 314, 200, true );
add_image_size( 'related', 50, 50, true );
add_image_size( 'home_img', 314, 200, true );
add_image_size( 'single_img', 600, 300, true );
add_image_size( 'page_img', 920, 350, true );
add_image_size( 'slider_img', 600, 280, true );
Stylesheet.css code
.img-home, .feat-thumb a
max-width: 314px;
max-height: 200px;
display: inline-block;
.img-single, .feat-thumb-s a
max-width: 600px;
max-height: 300px;
display: inline-block;
Any ideas?