Hi,
There are several things I can tell, you regarding what you want to do:
Since HikaShop 4.2.2, we've added a "table switcher" for the DIV display mode:
www.hikashop.com/home/blog/447-hikashop-4-2-2.html#switch
The "List" mode of the switcher looks quite a lot like what you want. So, you might want to use it.
Now, it will default to grid mode, not list mode. But with a simple view override, you could have it default to list mode. For that, you just need to change the line:
$cookie_value = 'display_grid';
to:
$cookie_value = 'display_list';
in the view file product / listing_div via the menu Display>Views
Another thing is that that in DIV mode, you have another setting called "Layout type" which allows you to choose the layout to use for each product on the listing. By default, it is set to "image and title", and the description is not displayed, like on your screenshot. Change it to "image and description" and you'll have the description as well.
Basically, you can have all the information displayed on your screenshot, with the proper setup of the settings of the menu item / module.
Also, when you edit the menu item / module, you can potentially change the number of columns. By default, it is set to 3 columns. But you could have it in 1 column, making it closer to what you want, without using the table switcher system.
Finally, If you need extra information displayed, or you want to rearrange the information displayed, I would recommend you read this :
www.hikashop.com/support/documentation/1...-display.html#layout
It will tell you how to find which view file to edit in the Display>Views menu. The drag & drop view builder area will also greatly help you, especially if you don't know coding as you can rearrange the elements visually with the interface provided.