Why 595 and not 600 px?
I prepare my pictures in Photoshop, so I do not want them to be compressed again. Where do I change the code to keep them the way they are?
Since my pictures are the size they should be I also want to remove the link to LARGER picture.
Thanks. I love your software.
Comments
To remove the link to the original file, just delete the lines:
`" title="<?=getImageTitle();?>">`
and the trailing:
``
from image.php in your theme's folder and you should be all set.
in the <i>image.php</i> of your template, remove the `s` code as faramineux said, and replace the
`<?php printDefaultSizedImage(getImageTitle()); ?>` by
`" alt="<?=getImageTitle();?>">`
which gives the original picture.
Hope it helps...