Hello,
There are no setting in HikaShop to do this, but there are a quite easy solution.
To have a different display from mobile to classic screen or a wider screen.
Let's detail this :
1. First, see this
documentation
about the @media command.
2. Have a look on this
forum subject
=> Example : (pseudo code)
@media only screen and (max-width: 600px) {
.classic_listing_module .item_container {
width: 50%;
}
}
With this code, you will have your listing module (or item menu) will automatically switch for
2 columuns (2 item per row module)
WHEN the screen will be smaller than 600 pixel.
Hope this will meet your expectations.
Regards