Jump to content

IMAGES ON THE SPECIALS BLOCK APPEAR BLURRED


gbola

Recommended Posts

Problem is that your medium size picture is natually 58x58 pixels, but the shown size is 200x200pxl.

Can you give a screendump of  your preferences->images page, so we can check the sizes given here?

 

 

(if nothing helps, in themes/<your theme folder>/modules/blockspecials/blockspecials.tpl:  (make backup, just in case)) (sample code from PS. 1.5.5.0)

 
<a href="{$special.link|escape:'html'}"><img src="{$link->getImageLink($special.link_rewrite, $special.id_image, 'medium_default')|escape:'html'}" alt="{$special.legend|escape:html:'UTF-8'}" height="{$mediumSize.height}" width="{$mediumSize.width}" title="{$special.name|escape:html:'UTF-8'}" /></a>
 
change to
 
<a href="{$special.link|escape:'html'}"><img src="{$link->getImageLink($special.link_rewrite, $special.id_image, 'large_default')|escape:'html'}" alt="{$special.legend|escape:html:'UTF-8'}" height="{$mediumSize.height}" width="{$mediumSize.width}" title="{$special.name|escape:html:'UTF-8'}" /></a>
 

But let's first check the sizes if they are correct.

 

pascal.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...