Your shopping basket is empty!
Any Questions? Call 01592 321500
Sort By:
Transform Your Outdoor Space
A long lasting, Ornamental Bark for a low maintenance garden with a ..
Glenmore Screened Bedding Soil (20mm) is a general-purpose topsoil ideal for garden landscaping and ..
Showing 1 to 2 of 2 (1 Pages)
List
/ Grid');
$.totalStorage('display', 'list');
} else {
$('.product-list').attr('class', 'product-grid');
$('.product-grid > div').each(function(index, element) {
html = '';
var image = $(element).find('.image').html();
if (image != null) {
html += '
' + image + '
';
}
html += '
' + $(element).find('.name').html() + '
';
html += '
' + $(element).find('.description').html() + '
';
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
' + $(element).find('.cart').html() + '
';
html += '
' + $(element).find('.wishlist').html() + '
';
html += '
' + $(element).find('.compare').html() + '
';
$(element).html(html);
});
$('.display').html('
Display: List / Grid');
$.totalStorage('display', 'grid');
}
}
view = $.totalStorage('display');
if (view) {
display(view);
} else {
display('list');
}
//-->