Search 预测搜索插件中的搜索结果

Search 预测搜索插件中的搜索结果,search,woocommerce,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-c

我正在使用预测搜索插件为我的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解决方案,但我不能让它工作。 有人知道为什么吗? 非常感谢