Jump to content

[Résolu] Changer l'affichage des sous-categori


Recommended Posts

Bonsoir,

 

je souhaite modifier l'affichage des sous categorie, aidé moi svp .

 

je suis sur prestasholp v 1.5.2.0

 

l'affichage que j'ai pour l'instant est comme ça :

243275screen1.jpg

 

 

 

 

je souhaite le changé a cette affichage :

 

 

256277screen2.jpg

 

 

 

 

Aidé moi svp.

 

Très cordialement,

Edited by chichipool (see edit history)
Link to comment
Share on other sites

ça va se passer dans category.tpl

Il faut modifier ton template et le css approprié pour passer par exemple tes li en display:inline-block

 

tu utilise le thème d'origine ?

 

Oui j'utilise le thème prestashop par default, j'ai essayé de faire un changement dans Dans thémes/ css/ category.css

 

j'ai changé ses ligne :

 

.inline_list li {

padding:10px 0;

border-bottom:1px dotted #ccc

}

.inline_list li .img {

float:left;

margin-right:15px

}

 

par ses ligne :

 

 

.inline_list li {

overflow:hidden;

width:75px;

float:left;

text-align:center;

margin-bottom:8px;

padding: px 15px;

}

.inline_list li .img {

overflow: hidden;

width:90px;

text-align:center;

float:left;

margin-right:15px

}

 

 

 

Voila le résultas

 

437146Sanstitre.jpg

y a juste le problème de background

 

aidé moi a régler ce probléme svp

 

merci

Edited by chichipool (see edit history)
Link to comment
Share on other sites

je suis parti du style d'origine des li

 

 


.inline_list li {
   border-bottom-color: #CCCCCC;
border-bottom-style: dotted;
border-bottom-width: 1px;
padding-bottom: 10px;
padding-left: 0;
padding-right: 0;
padding-top: 10px;
}

auquel j'ai simplement ajouté le display:inline-block;

.inline_list li {
  [b]display:inline-block;[/b]
border-bottom-color: #CCCCCC;
border-bottom-style: dotted;
border-bottom-width: 1px;
padding-bottom: 10px;
padding-left: 0;
padding-right: 0;
padding-top: 10px;
}

 

et j'ai bien l'affichage des sous-catégories les unes à côté des autres.

après, il reste de la mise en forme à faire.

Edited by ChDUP (see edit history)
Link to comment
Share on other sites

je peut te répondre a la place de ChDuyp, si vous souhaitez enlevé le bloc sous-categorie il suffit d'aller dans le fichier

 

category.tpl de votre théme :

 

et supprimé de la ligne 72 jusqua 93

 

{if isset($subcategories)}

<!-- Subcategories -->

<div id="subcategories">

<h3>{l s='Subcategories'}</h3>

<ul class="inline_list">

{foreach from=$subcategories item=subcategory}

<li class="clearfix">

<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">

{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}

</a>

<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>

 

</li>

{/foreach}

</ul>

<br class="clear"/>

</div>

{/if}

Link to comment
Share on other sites

Sabrina vous parler du bloc categorie ou bien les sous-categoriec ?

 

Si vous parler du bloc categorie et vous souhaitez changer la couleur du fond du titre categorie

 

tu vas dans le fichier global.css dans la ligne 282 et modifier le code : 383838 par votre couleur

 

Ligne 282 =

background:#383838

 

exemple :

 

background:#000
( 000 = couleur noir ) Edited by chichipool (see edit history)
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...