Jump to content

Aumento de imagem da Sub-Categoria


Recommended Posts

Olá comunidade, utilizo a versão 1.5 e estou com uma dúvida solicitada por meu cliente,em anexo está a imagem para que possam olhar e me ajudar,gostaria de aumentar o tamanho de 58px - 58px para um tamanho maior, alguém sabe como fazer isto?

post-458166-0-27407800-1359946498_thumb.jpg

Link to comment
Share on other sites

Boas,

 

Ficheiro category.tpl linha 80:

  {if $subcategory.id_image}
   <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
  {else}
   <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
  {/if}

 

Pode alterar para:

{if $subcategory.id_image}
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'home_default')}" alt="" width="{$homeSize.width}" height="{$homeSize.height}" />
{else}
<img src="{$img_cat_dir}default-home_default.jpg" alt="" width="{$homeSize.width}" height="{$homeSize.height}" />
{/if}

 

Resumidamente trocou-se a variável responsável pelas imagens, que no caso do home_default tem 124x124 px

 

Pode alterar para outra variavel (veja em no BO > Preferências > Imagens) ou ainda pode criar uma ou alterar o width="XXXpx" height="XXXpx" pelo tamanho que pretende.

 

Cumps

Edited by carloscorp (see edit history)
  • Like 1
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...