Gavimse Posted July 23 Share Posted July 23 (edited) Bonjour, Je n'arrive pas à rallonger le titre de mes produits malgré la suppression du truncate. Je veux que les titres des produits puissent s'afficher sur 2 lignes. Il y a un effet au survol, peut-être que c'est ça qui m'en empêche. Voici la ligne de mes titres : {block name='product_name'} {if $page.page_name == 'index'} <span class="h3 product-title text-capitalize test1"><a href="{$product.canonical_url}">{$product.name}</a></span> {else} <span class="h3 product-title text-capitalize test2"><a href="{$product.canonical_url}">{$product.name}</a></span> {/if} {/block} Dans theme/templates/catalog/_partials/miniature/product.tpl Merci à tous Edited August 2 by Gavimse (see edit history) Link to comment Share on other sites More sharing options...
Prestashop Addict Posted July 23 Share Posted July 23 Vous avez du css text-overflow: ellipsis; dans la classe du titre, qu'il faut supprimer et il faut mettre display: inline-block; word-break: break-word; Link to comment Share on other sites More sharing options...
Gavimse Posted August 2 Author Share Posted August 2 Bonjour c'est chose faite mais le problème d'affichage persiste... Link to comment Share on other sites More sharing options...
Alexandre Carette Posted August 2 Share Posted August 2 Salut, ta span est en overflow hidden, enleve donc dela .products .product-title { margin: 8px 0; float: left; width: 100%; overflow: hidden; color: var(--body-text-color); font-size: 12px; display: inline-block; word-break: break-word; } Link to comment Share on other sites More sharing options...
Prestashop Addict Posted August 2 Share Posted August 2 vous avez un white-space: nowrap; qui traine Link to comment Share on other sites More sharing options...
Gavimse Posted August 2 Author Share Posted August 2 ça fonctionne merci à tous 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