selenii, Дело в том, что у тебя там прописан размер каждого изображения, типа:
<img width="448" height="258" src="http://rosadonna.ru/wp-content/uploads/2014/05/shayk-xti-e1399646638456.jpg" class="attachment-240 wp-post-image" alt="shayk-xti" 0="">
Надо удалить эти атрибуты, вот так:
<img src="http://rosadonna.ru/wp-content/uploads/2014/05/shayk-xti-e1399646638456.jpg" class="attachment-240 wp-post-image" alt="shayk-xti" 0="">
А затем в style.css найти:
.post-list li .image img {
width: 200px;
height: 110px;
z-index: 1;
}
И заменить на:
.post-list li .image img {
max-width: 200px;
max-height: 110px;
z-index: 1;
}