FROM: databell96
Actually, no. I changed the setting in js/jquery.prettyPhoto.js inside of the free plugin. Changed this from 200 to 40 as the example shows:
if((pp_containerWidth > windowWidth)){
imageWidth = (windowWidth - 40);
imageHeight = (height/width) * imageWidth;
}else if((pp_containerHeight > windowHeight)){
imageHeight = (windowHeight - 40);
imageWidth = (width/height) * imageHeight;
}else{
fitting = true;
};