Need help making my homepage blog image smaller than my post image

Is the css clip property what you are looking for?

img {
position: absolute;
clip: rect(0px,60px,200px,0px);
}

From CSS clip Property