Editing thumbnail size

Permalink
I'm trying to increase the size of the thumbnail in the custom template. I've tried editing this line, but the thumbnail always defaults to 100px wide.

Is there something else I should modify?

<?php    
  $width = ($controller->thumbnailWidth) ? $controller->thumbnailWidth : 300;
  $height = ($controller->thumbnailHeight) ? $controller->thumbnailHeight : 300;
  print $imageHelper->outputThumbnail($thumbnail, $width, $height, $blog_post->subject); ?>
FatTony1952
View Replies:
FatTony1952 replied on at Permalink Reply
FatTony1952
I actually just figured it out. I overrode the controller.php thumbnail by changing

<?php    
  $width = ($controller->thumbnailWidth) ? $controller->thumbnailWidth : 300;
  $height = ($controller->thumbnailHeight) ? $controller->thumbnailHeight : 300;
  print $imageHelper->outputThumbnail($thumbnail, $width, $height, $blog_post->subject); ?>


to

<?php    
  $width =  300;
  $height = 300;
  print $imageHelper->outputThumbnail($thumbnail, $width, $height, $blog_post->subject); ?>