0

In opencart 2.0 how to set the limit characters or letters on product name on category page ? Any one please answer this

Thanks

HDP
  • 4,005
  • 2
  • 36
  • 58
sarath
  • 9
  • 2
  • 4

1 Answers1

0

If, You want to restrict Product name in one line instead or two or more line. So, You can use below css & easily product name convert in one line (exp.- my product name....)

.product-thumb h4{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
HDP
  • 4,005
  • 2
  • 36
  • 58