
Originally Posted by
jwitt98
You should be able to achieve this layout fairly easy by turning off both left and right side boxes in admin. Then you will want to set the number of product to display per row to 1. Then set a size for your images.
The rest of the look can be accomplished with css styling.
However, If you want every other row to be staggered like in your screen shot, that will take a bit more work and some php code editing. Basically you will need the php code to generate 2 separate class selectors assigned to every other div. Hope you have enough php knowledge because this can become tricky.
And then assign some style for example:
.div1 img {
float: right;
border-left: 2px solid brown;
}
.div2 img {
float: left;
border-right: 2px solid brown;
}