pippo00907 Posted November 7, 2013 Share Posted November 7, 2013 Good afternoon. I was wodering if anybody knew how to remove the blank spaces between the subcategories: At the moment the site is only accessible by IP: http://188.13.46.227 Thanks in advance for your help. Link to comment Share on other sites More sharing options...
vekia Posted November 7, 2013 Share Posted November 7, 2013 in your cateogry.tpl file you've got definition of subcategories, you will need to change it due to the fact that you have there 4 products per row: can you please show category.tpl file contents? Link to comment Share on other sites More sharing options...
pippo00907 Posted November 7, 2013 Author Share Posted November 7, 2013 Thank you for your quick reply. Noticed that with help of firebug too, but didn't find out where to change what. I've attached my category.tpl file now {* * 2007-2013 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat block_box"> {if $scenes} <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {else} <!-- Category image --> {if $category->id_image} <div class="align_center"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" /> </div> {/if} {/if} {if $category->description} <div class="cat_desc"> {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} <p>{$category->description}</p> {/if} </div> {/if} </div> {/if} <div class="block_box_center"> <h4 class="title-category"> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} <span class="fs11 resumecat category-product-count"> / {include file="$tpl_dir./category-count.tpl"} </span> </h4> {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories"> <h3>{l s='Subcategories'}</h3> <div class="inline_list"> {foreach from=$subcategories item=subcategory name=subcategories} {if $subcategory@iteration%4==1} <div class="row-fluid"> {/if} <div class="span4"> <div class="category-container product-container"> <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, 'large_default')}" alt=""/> {else} <img src="{$img_cat_dir}default-large_default.jpg" alt="" /> {/if} </a> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name s_title_block">{$subcategory.name|escape:'htmlall':'UTF-8'}</a> {if $subcategory.description} <p class="product_desc">{$subcategory.description|escape|truncate:85:'...':true}</p> {/if} </div> </div> {if $subcategory@iteration%4==0||$smarty.foreach.subcategories.last} </div> {/if} {/foreach} </div> <br class="clear"/> </div> {/if} {if $products} <div class="products-list"> <div class="content_sortPagiBar"> <div class="row-fluid sortPagiBar"> <div class="span3 hidden-phone productsview"> <div class="inner"> <span>{l s='View as:'} </span> <div id="productsview"> <a href="#" rel="view-grid"><i class="icon-th-large active" ></i></a> <a href="#" rel="view-list"><i class="icon-list"></i></a> </div> </div> </div> <div class="span6 hidden-phone"> <div class="inner"> {include file="./product-sort.tpl"} </div> </div> <div class="span3"> <div class="inner"> {include file="./product-compare.tpl"} </div> </div> </div> </div> {include file="./product-list.tpl" products=$products} <div class="content_sortPagiBar"> <div class="row-fluid sortPagiBar"> <div class="span3 hidden-phone productsview"> <div class="inner"> <span>{l s='View as:'} </span> <div id="productsview"> <a href="#" rel="view-grid"><i class="icon-th-large active" ></i></a> <a href="#" rel="view-list"><i class="icon-list"></i></a> </div> </div> </div> <div class="span6 hidden-phone"> <div class="inner"> {include file="./product-sort.tpl"} </div> </div> <div class="span3"> <div class="inner"> {include file="./product-compare.tpl"} </div> </div> </div> </div> {include file="./pagination.tpl"} </div> {/if} </div> {elseif $category->id} <p class="warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Thanks a lot Link to comment Share on other sites More sharing options...
vekia Posted November 7, 2013 Share Posted November 7, 2013 change this if condition: {if $subcategory@iteration%4==1} to: {if $subcategory@iteration%3==1} and this: {if $subcategory@iteration%4==0||$smarty.foreach.subcategories.last} </div> {/if} to: {if $subcategory@iteration%3==0||$smarty.foreach.subcategories.last} </div> {/if} Link to comment Share on other sites More sharing options...
pippo00907 Posted November 7, 2013 Author Share Posted November 7, 2013 Thanks a lot vekia, it works. Link to comment Share on other sites More sharing options...
vekia Posted November 7, 2013 Share Posted November 7, 2013 you're welcome glad to hear that i could help you. i marked this thread as solved. btw. i've noticed that your menu works a bit weirdy, take a look here: http://www.kolorowa-szafa.pl/ i Think that it should work like this Link to comment Share on other sites More sharing options...
pippo00907 Posted November 7, 2013 Author Share Posted November 7, 2013 You're right. Will try to figure out why it doesn't work properly. Thanks again. 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