08/22/2014 at 3:28 pm
#301601
Guest
Hi Steve,
My question continues on this front so I hope you can help.
I have made a new card.php template in my theme for Slim Plus.
I have changed
$entry->getImage( array(
'image' => $atts['image'],
'height' => 120,
'width' => 100,
'fallback' => array(
'type' => $atts['image_fallback'],
'string' => $atts['str_image']
)
)
);
to
$entry->getImage( array(
'image' => $atts['image'],
//'height' => 120,
//'width' => 100,
'height' => $atts['image_height'],
'width' => $atts['image_width'],
'fallback' => array(
'type' => $atts['image_fallback'],
'string' => $atts['str_image']
)
)
);
I’ve also updated the CSS so that #cn-slim-plus .cn-left
and #cn-slim-plus .cn-right
no longer have set widths.
This helps a little but I can still see that some code is choosing a cropped/appended version of my image (original_image.jpg&h=150&w=225&zc=1
).
How can I change this cropped thumbnail to using the full image instead?
Thanks for any help you can give me!!
-Hilary