Jump to content

[SOLVED] smaller font...possible?


Recommended Posts

when pressing on a category it opens a product list every product in its box with image and title and price....my problem is , the title font is big...does not show the full product name at all....the box is big how can i make the title to show in full in the box space? i dont mind if the title shows in two or three lines because so much empty place within the box......any help how to fit the whole title within this box?

thanx in advance for every help rendered :)

Link to comment
Share on other sites

To display the full product name on product listings, change line 8 of product-list.tpl (in PrestaShop v1.3.2) from:

{if $product.new == 1}{l s='new'}{/if}<a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}



to:

{if $product.new == 1}{l s='new'}{/if}<a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}



To change the font size, add a font-size to the ul#product_list li h3 block in the /* product-list.tpl */ section.

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...