Jump to content

Déclinaison couleur - question


Recommended Posts

Version : PrestaShop™ 1.4.6.2

Site : en cours de dev

hébergement : ovh

 

 

Bonjour,

 

Dans mes fiches produits, j'utilse les déclinaisons couleurs.

 

J'aimerai savoir comment augmenter la taille des petits carrés qui présentent chaque couleur.

(exemple : http://www.couettabra.com/boutique/product.php?id_product=10)

 

Savez-vous comment je peux faire ça ?

 

Merci d'avance

 

Bidi

Link to comment
Share on other sites

bonjour,

 

 

ça se passe dans le fichier product.tpl dans votre thème. Repérez ces lignes et modifier les valeurs width et height :

 

{if isset($colors) && $colors}
 <!-- colors -->
 <div id="color_picker">
  <p>{l s='Pick a color:' js=1}</p>
  <div class="clear"></div>
  <ul id="color_to_pick_list">
  {foreach from=$colors key='id_attribute' item='color'}
   <li><a id="color_{$id_attribute|intval}" class="color_pick" style="background: {$color.value};" onclick="updateColorSelect({$id_attribute|intval});$('#wrapResetImages').show('slow');" title="{$color.name}">{if file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')}<img src="{$img_col_dir}{$id_attribute}.jpg" alt="{$color.name}" width="20" height="20" />{/if}</a></li>
  {/foreach}
  </ul>
  <div class="clear"></div>
 </div>
 {/if}

 

ensuite dans le fichier product.css modifier les valeurs de :

#primary_block a.color_pick {
   border: 1px solid #666666;
   cursor: pointer;
   display: block;
   height: 20px;
   width: 20px;
}

 

ça devrait le faire ;)

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...