Item list view in website

dears.
i`m eager to know if it possible to only display 2 items per row in website item list view .
its by default shows 3 items per row and it makes some troubles in mobile view .

any idea ??

@netchampfaris please check.

As the grid system is based on Bootstrap, you can change the grid layout easily.
Modify the file /apps/erpnext/erpnext/templates/includes/products_as_grid.html to suit your needs

1 Like

Thanks @netchampfaris

it works

i did it through changing
<div class="col-sm-4 col-xs-4 product-image-wrapper">
to
<div class="col-sm-6 col-xs-6 product-image-wrapper">

so its showing only 2 items / row in mobile view

2 Likes