在预测搜索插件中搜索结果

时间:2017-03-01 14:19:06

标签: search woocommerce

我正在使用预测搜索插件在我的woocommerce网站上搜索/显示我的产品。结果页面显示每个产品一行的产品。我想向他们展示例如每行3个产品。我试过

.ps_list_items_container {
    display: table;
    width: 100%;
}
#ps_list_items_container > div {
    display: table-cell;
    width: 25%;
}
#ps_list_items_container > div:nth-child(2) {
    width: 50%;
}

以及其他css解决方案,但我不能让它工作。 有谁知道为什么? 非常感谢!

0 个答案:

没有答案
相关问题