unable to change image size in "Top Posts&Pages"
-
I have added the required code in my child theme but unable to change image size.
I have added following code in style.css.widgets-list-layout .widgets-list-layout-blavatar {
max-width: 600px;
width: 100%;
}and following code in functions.php
function jeherve_custom_thumb_size( $get_image_options ) {
$get_image_options[‘avatar_size’] = 600;return $get_image_options;
}
add_filter( ‘jetpack_top_posts_widget_image_options’, ‘jeherve_custom_thumb_size’ );Please let me know what else could I do? Thank you
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘unable to change image size in "Top Posts&Pages"’ is closed to new replies.