gbola Posted May 2, 2014 Share Posted May 2, 2014 Hi, can anyone help resolve this? The images on my specials block always appear blurred. How can i resolve this. Please see the attached for clarity. Link to comment Share on other sites More sharing options...
PascalVG Posted May 3, 2014 Share Posted May 3, 2014 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 More sharing options...
gbola Posted May 3, 2014 Author Share Posted May 3, 2014 @Pascal see the attached screen shot for preferences-images. Thank you. Link to comment Share on other sites More sharing options...
PascalVG Posted May 3, 2014 Share Posted May 3, 2014 Maybe try to re-generate the product pictures -> medium sizes one more time. Otherwise, change the line as mentioned in post above. pascal Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now