stopdesign theme questions

hey,

i really like the stopdesign theme but there are two things i just can't figure out.
- i want to remove the fullsize link from the theme, i did some digging in the image.php file but wasn't successful.
- i would like to have the images bigger, same as in the default theme, but sadly i couldn't get it working either.

help is gladly appreciated.

Comments

  • removing the fullsize link should be as simple as removing the following lines from image.php:
    `

    if (isImagePhoto()) {

    ?>

    " title="<?php echo getBareImageTitle();?>"><?php echo gettext('Full Size'); ?>

    <?php<br />
    }

    ?>

    `
    They should be around line 72.

    =====

    The image size, however, is a more difficult one. You will have to adjust every mention of '480'...

    image.php:38
    `

    setOption('image_size', 480, false);

    `

    image.php:51
    `

    <?php printCustomSizedImage(getImageTitle(), null, $ls?480:null, $ls?null:480); ?>

    `

    css/photos.css:several lines. For details, see css/custom.css which describes which dimensions you will have to adjust if you want a different-sized photo.

    I'm working on my own variant of the stopdesign theme that I hope to make available at -some- point, that accommodates different-sized images directly, after giving up on customizing stopdesign; if you know some web editing, it might be worth looking into building a theme from scratch yourself as well (not for the faint of heart, though).
  • thanks a lot for that detailed help!
    but in that case i'd rather use the default theme.
    if you could tell me, how a click on the image redirects to the next image, instead of a fullsize link.

    that would be wonderful,
    regards
  • a click on the main image?

    remove whatever link there might be on it now, and replace it with...
    `

    ``">[main image code here]`
Sign In or Register to comment.