Try the following in the CSS file for the image class (if your original image files are small):
height: auto;
width: auto;
If your original image files are larger than you want displayed in the book, use percentages, like the following:
height: 50%;
width: 50%;
Use whatever percentage results in the size you want.
This image class is the class that you've included in the img src line.
|