Hi James,
You can change this in the "XMPie\uStore\App\CustomerApp\Images\[Coffee Skin]\app\html-templates\group-products.html" file
You can add a filter to limit the number of Random products by using limitTo: 2 and change the columns
for example change this -
<a class="col-lg-4 col-md-4 text-center product-box"
href="{{product.Url}}"
role="button"
ng-repeat="product in data.randomProducts">
to this -
<a class="col-lg-6 col-md-6 text-center product-box"
href="{{product.Url}}"
role="button"
ng-repeat="product in data.randomProducts | limitTo: 2 | orderBy:'Name'"">
Regards,
Wayne