Close

Product Description Text Length

JayC
8 years ago
#9532 Quote
Avatar
  • 14
What do I need to change so that the product descriptions on the homepage or landing pages have more than 2 lines of text?

Also, where can I change the categories image holders so that the images are taller. (how they are shown on the product page)

Thanks.
nikola.dragiev
8 years ago
#9538 Quote
Avatar
  • Moderator
  • 154
Hello,

You can add a couple fo lines custom css code in your Custom Head Styles textfield box in Plugins/Nop Motion Theme/Settings.

For the Category and subcategory images add this css:
.category-item .picture a, .sub-category-item .picture a {
  height: 310px;
}


And for the short description in the item boxes add this css to display three lines of text:
.item-box .description {
height: 54px;
}

If you want to display 4 lines make hte height 72px, for 5 lines 90px and so on 
Best regards,
Nikola Dragiev
Nop-Templates.com
JayC
8 years ago
#9588 Quote
Avatar
  • 14
Excellent! Worked perfectly thanks!

1 last question though. What is the css change so that the title can be longer/taller as its cutoff right now?

Thanks
nikola.dragiev
8 years ago
#9593 Quote
Avatar
  • Moderator
  • 154
Hello,

If you want the product title to be three lines in height add this css code after the previous one:
.item-box .product-title {
  height: 75px;
}


If you want i t to be four line in height just change the pixels to be 100px.
Best regards,
Nikola Dragiev
Nop-Templates.com