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

Have tried looking around the forums for a solution to this, but no luck.

I have a clients site that i have built this CMS into, the gallery is working perfect apart from whenever me or my client upload a picture, the thumbnail is blurry, its sticking to 115px wide.

Code: Select all
<cms:editable
    name           = 'gg_image'
    label          = 'Image'
    desc           = 'Upload your main image here'
    width          = '500'
    show_preview   = '1'
    preview_height = '200'
    type           = 'image'
/>
  <cms:editable
    name        = 'grid_thumb'
    assoc_field = 'gg_image'
    label       = 'Grid Thumbnail Image'
    desc        = 'Used on the front end'
    width       = '182'
    height      = '164'
    crop        = '1'
    type        = 'thumbnail'
/>
  <cms:editable
    name        = 'gg_thumb'
    assoc_field = 'gg_image'
    label       = 'CMS Thumbnail Image'
    desc        = 'Only used within the admin panel'
    width       = '115'
    height      = '115'
    enforce_max = '1'
    type        = 'thumbnail'
/>


This is what my code looks like, im trying to set the thumbnail image to be 182 wide by 164.

Any help would be appreciated, you can see the gallery here - http://fayescelebrationcakes.co.uk/cele ... allery.php
Hello and welcome :)

Your code for the 182x164 thumbnail seems to be just fine.
To remove the blurriness please try adding the following to it
<cms:editable
name = 'grid_thumb'
assoc_field = 'gg_image'
label = 'Grid Thumbnail Image'
desc = 'Used on the front end'
width = '182'
height = '164'
crop = '1'
type = 'thumbnail'
quality = '100'
/>

You mentioned -
..its sticking to 115px wide.
Sorry couldn't get this point.
Did you mean the 'grid_thumb' thumbnail above?
2 posts Page 1 of 1