Back to site

test_product_page

Image of {{ product.name | escape }}{% if product.image_count > 0 %}{% endif %}

In the Time of Plenty

by Tim Lane

£90.00

BUY

Artist: Tim Lane

Title: In the Time of Plenty

Date: 2012

Dimensions: 39cm x 49cm

Medium: Giclee Print

Edition Size: 50

Details:

This limited edition giclee print on museum grade archival paper is a reproduction of an acrylic on canvas painting by Tim Lane.

Description:

Tim’s anachronistic style takes especially strong influence from classic literature and mythologies. Although Tim’s background is in illustration he now concentrates on fine art painting and drawing, in which he enjoys greater creative freedom in terms of both style and subject matter. Illustration has however helped to give structure to his love for working directly from his imagination and gives his art its narrative quality. It has also encouraged a passion for drawing, which is at the core of all his work.

Tim graduated from Falmouth College of Arts in 2004 with a first class degree in Illustration. Notable group exhibitions include Grotesques and Anatomy with Antlers Gallery, ‘Out of Darkness’ Literary Festival at The Globe at Hay, Hay-on-Wye and ‘Mortal: Life, Death and Memento Mori’ Clifton, Bristol. Tim has had two solo shows at Knifesmith Gallery in Bristol ‘The Innocents?’ 2009 and ‘Revelations’ 2010.

Original works by Tim are available, to find out more please contact Jack on: [email protected] or 0778 050 3180

Payments, Delivery & Returns Policy

£90.00

BUY Own Art
{% assign artist = "Tim Lane" %}

Other Products

{% for product in products.all %} {% for option in product.options %} {% if option.name == artist %}
Image of {{ product.name | escape }}

{{ product.name }}

{{ product.option.name }}

{{ product.price | money_with_sign }}

{% if product.on_sale %}

On Sale{% endif %}

{% endif %} {% endfor %} {% endfor %}

function getInternetExplorerVersion() {
var rv = -1; // Return value assumes failure.
if (navigator.appName == 'Microsoft Internet Explorer') {
var ua = navigator.userAgent;
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
if (re.exec(ua) != null)
rv = parseFloat(RegExp.$1);
}

return rv;
}


setupZoom();


if(getInternetExplorerVersion() == 8){

// IE8 cannot handle jQuery.noConflict...so we have to drop all jQuery
setupZoom();
}
else {

jQuery(document).ready(function(J) {

// Remove zoom popup link (for IE8 only)
//J('#product-image').removeAttr('href');
J('.product-thumb').attr('href', '#');

// Code that uses jQuery's J (replaces $) can follow here.
// Strip decimals from all prices

// Top Price
var string = J('.p-price').text();
var newString = string.substring(0, string.length - 3);
J('.p-price').text(newString);

// 2nd price
var string = J('.price').text();
var newString = string.substring(0, string.length - 3);
J('.price').text(newString);

J("#product-img").elevateZoom({
gallery:'images-list',
galleryActiveClass: 'active',
lensSize: 100,
zoomWindowFadeIn: 200,
zoomWindowFadeOut: 200,
zoomType: "inner",
cursor: "cursor"
});

// Resize the window
J('.product-thumb a').click(function(){
setTimeout(function(){
var imgHeight = J('#product-img').css('height');
J('.zoomContainer').height(imgHeight);
J('.zoomWindow').height(imgHeight);
}, 500);

});

// end of jQuery
});

} // end of IE8 check

{% for image in product.images %}
Store.fullSizeImages.push('{{ image | product_image_url }}');
{% endfor %}