2
no ... no auto-resizing images hack that i know ..
perhaps this may work in your case?
img {
width: 200px;
height: 100px;
}
in stylesheet file will affect all images used.
Now it's your imagination to separate images you want to be affected eg.
<img class="galery" src="" alt="" />
and in stylefile:
.galery img {
width: 200px;
height: 100px;
}
michael