Problems, need help? Have a tip or advice? Post it here.
4 posts Page 1 of 1
Image

As you can see, the Thumbnail image has been cropped. I want to see a whole image, is it possible?

Code: Select all
<cms:editable 
      name="gg_thumb"
      assoc_field="gg_image"
      label="Image Thumbnail"
      desc="Thumbnail of image above"
      width= '480'
      height='302'
      enforce_max='0'
      type="thumbnail"
   />



My thumbnail image size:480 x 302px.

If I set it 115px, the front-end image will be automatically cropped to 115px. it will force my image to enlarge from 115px to 480px, makes the image blur.

Can I resize the admin panel's thumbnail image?
ok, in the admin panel it shows 2 thumbnail recreate sections, gg_thumb and grid_thumb, how can I make gg_thumb not showing in the thumbnail recreate section?
You can inject CSS (that will hide gg_thumb) into the admin panel with the 'message' editable region:
Code: Select all
<cms:editable name='gallery_css' type='message'>
    <style>
    #k_element_gg_thumb {
        display: none;
    }
    </style>
</cms:editable>
4 posts Page 1 of 1