How can I remove the mouseover effect?
Just add this to your child theme style.css file:
.mh-nip-item:hover .mh-nip-overlay { opacity: 0; filter: alpha(opacity=0); }
How can I change the size of the News In Pictures images?
You can modify the thumbnail sizes of any theme image by using the functions.php file of your child theme, you need to register every image even if you're just changing the dimensions of 1 image, like so:
function mh_magazine_image_sizes() {
add_image_size('mh-magazine-slider', 1030, 438, true);
add_image_size('mh-magazine-content', 678, 381, true);
add_image_size('mh-magazine-medium', 326, 245, true);
add_image_size('mh-magazine-small', 80, 60, true);
}
The News In Pictures widget makes use of the "mh-magazine-small" image size, so modify the dimensions from 80*60px to suit your requirements.