这是我第一次来这里,还有一个需要解决的问题。我使用Woocommerece 3.4.2并遇到了问题。我想在woocommerce商店页面中显示完整的产品标题。目前,其结尾处带有...
的条带化。例如,我想显示两行。
对于Example
我尝试使用以下方法修复CSS:
.woocommerce .archive-products ul.products .tb-product-items .tb-product-item
.tb-product-item-inner .tb-content .tb-title a {
display:inline-flex;
}
但只是暂时解决了该问题。有帮助吗?
答案 0 :(得分:0)
从围绕锚点的DIV中删除类“文本省略号”-就是这样!
答案 1 :(得分:0)
您可以删除应用于锚点的text-ellipsis
类,也可以删除此CSS属性
.text-ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}