Search code examples
cssmagento

display longer product name in 2 lines in magento


Under a product I have a longer product name, which needs to be displayed on 2 lines instead of 1.

How can I display a long productname on 2 lines?


Solution

  • You can solve it using the applying CSS to the .best-sell-product class:

    .best-sell-product {
      text-align: center;
      width: 200px;
    }
    

    You can change the width as per requirement.
    Hope it will work.