Search Results page

Hi there :slight_smile:

Using WooComerce, right now when a search is performed, the results display 1 product per row. This is fine for mobile but on desktop it looks a little boring.

Is there a way to have the search results return 2, 3 or 4 products per row?

Example (view on desktop)
https://www.preciousmitre.com/?s=&post_type=product

Thanks!

FYI the example above ^ is how we would like it to display.

Here is how it currently displays:

Hi @redinfluence,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

@media (min-width: 768px){
body.search-results article {
    width: 23%;
    float: left;
    margin-right: 2%;
}
body.search-results article:nth-child(4n+2) {
    clear: left;
}
}

Best Regards,
Movin