Jump to content

How to fix the text?


Recommended Posts

 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!

post-715508-0-52623900-1395230944_thumb.png

post-715508-0-11846900-1395230945_thumb.png

Link to comment
Share on other sites

 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

 

post-715508-0-30260000-1395387109_thumb.png

Link to comment
Share on other sites

×
×
  • Create New...