@redi
If you wrap block into same divs with classes and styles as on search page, you can.
Basically:
lvl1 parent (.block)
add class relative and styling:
float: left;
clear: both;
width: 100%;
margin: 0;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
padding-bottom: 8px;
margin-bottom: 8px;
inside this block enter also:
<div class="nice-scroll-left"></div>
<div class="nice-scroll-right"></div>
lvl2 parent (.prod-wrap)
add class nice-scroll
items (.simple-prod)
width: 28%;
float: none;
display: inline-block;
margin-right: 1%;
margin-left: 0%;
margin-bottom: 0;
Define height to following elements as they use 100% that may not work here:
.nice-scroll-right, .nice-scroll-left
Good luck