d.crysty23 Posted March 19, 2014 Share Posted March 19, 2014 How can I align the text from the product list page? I want it lower, on the red band. There, the text is generated by the h1 tag. I want to lower it and give it its own ID so that it won't cause changes on other pages. Where can I find this tag in order to add an ID and what is the code that I need to apply in order to lower the text? http://www.3bwine.com/CRISTY/prestashop/index.php Thanks in advance! Link to comment Share on other sites More sharing options...
vekia Posted March 19, 2014 Share Posted March 19, 2014 move: <h1> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} </h1> from category.tpl to: category-count.tpl Link to comment Share on other sites More sharing options...
d.crysty23 Posted March 21, 2014 Author Share Posted March 21, 2014 Is this how it should have been done? take a look <h1> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} </h1> {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} {l s='There is %d product.' sprintf=$nb_products} {else} {l s='There are %d products.' sprintf=$nb_products} {/if} {/if} category-count.tpl Link to comment Share on other sites More sharing options...
Recommended Posts