Monday, 9 May 2016

How to limit Product title length

Most of us has faced this issue with woocommerce in different theme


  
You can solve it with simple css code

.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 {
line-height:1.3em;
over-flow:hidden;
text-overflow:ellipsis;
display:block;
white-space:nowrap;
}

I hope it gonna help you, let me know if you have any problem in comments

No comments:

Post a Comment