Jump to content

(Solved) how to change position SUBCATEGORIES in prestashop


Recommended Posts

You can do this by editing the category.css file in \themes\default\css.

 

Look for .inline_list li and add

display:inline-block;

width:189px;

 

Add the same width setting to .inline_list li .cat_name

 

If you only want the images to be displayed, you'll also need to edit \themes\default\category.tpl to remove the subcategory names & descriptions.

Link to comment
Share on other sites

If, like me, you want your products to be listed on the subcategory page, but not on the category page, you can amend the category.tpl file as follows:

 

Include

{if !isset($subcategories)}

between

{if $products}

and

<div class="content_sortPagiBar">

 

Don't forget the closing {/if}.

Link to comment
Share on other sites

×
×
  • Create New...