- This topic has 3 replies, 2 voices, and was last updated 7 years, 2 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Expand text area in category products grid?
Tagged: css tweaks, customize, fancy display
Hi, I’m using this shortcode to display all products in a category.
[wp_eStore_category_products_fancy id=1 style=13]
Is there any way to increase the text area/number of characters in title in this grid?
[http://cadaverclothes.com/womens-shop/]
You can use the following custom CSS tweak to show the full title/product name in there:
.eStore-product-fancy-13-name {
height: auto !important;
}
Use a plugin like the following to inject the custom CSS:
https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Hi,
That worked great for the title, thank you. Can you tell me how to expand the text area so it shows the complete description from the product setup?
The following CSS tweak should make it show the full description:
.eStore-product-fancy-13-description{
height: auto !important;
}