PRODUCT DESCRIPTION

A2 FRAMED PRINT - 870 x 710mm

By far our most popular larger size. Great value for money and perfect for that something extra special.
 
The A2 Framed pictures have an attractive superior finish and are sure to please. Printing is of the highest archival museum grade quality. Each print is mounted on MDF board behind a black matte surround and framed with our signature black and silver moulding behind perspex.

Each picture is packed with protective corners and placed in heavy duty cardboard containers for safe shipping.
 
Your picture will arrive ready to hang.

Please note that this product can also be shipped to New Zealand.

PERSONALISED ARTWORK

Making your purchase something individual and memorable is what Stomp is all about.  You are in good hands.  Stomp has been producing high quality, ready to hang personalised automotive artwork for Bars, Man Caves, She Sheds, Kids Bedrooms and Garage fitouts for over 20 years.  Choose any piece of artwork and select "Personalise" to personalise it with your own number plates or chosen name.

And for a small fee, you will have your very own personalised Stomp original piece of art.

Once the order is placed our team will get to work using provided photos or instructions in a follow up message.  A digital image of your artwork will be sent to you soon afterwards for confirmation.  Once happy, your very own original work will go into production. 

AUSTRALIAN MADE

GREAT GIFT IDEA

STOMPSHOP.COM Eleanor Drawing
Car Drawing Formats

READY TO HANG FORMATS

A1 FRAMED

PRINT SIZE 841 x 594mm
FRAME SIZE 1100 x 800 x 20mm

A1 STRETCHED CANVAS

PRINT SIZE 841 x 594mm
FINISHED SIZE 841 x 594mm x 50mm

A3 FRAMED

PRINT SIZE 420 x 297mm
FRAME SIZE 580 x 460 x 20mm

A2 FRAMED

PRINT SIZE 594 x 420mm
FRAMED SIZE 870 x 710 x 20mm

BAR

LOUNGE

KIDS BEDROOM

SHED FIT OUT

OFFICE

Car Art Lounge Room
Car Poster Bedroom
const products = document.querySelectorAll('.card-body'); products.forEach(product => { const mainImage = product.querySelector('.product-image'); const mainURL = product.querySelector('.main-image-url'); const mainURL2 = product.querySelector('.main-image-url2'); const swatches = product.querySelectorAll('.thumbnailVariation'); if (!mainImage || !mainURL || swatches.length === 0) { console.error('Missing elements in product:', product); return; } swatches.forEach(swatch => { swatch.setAttribute('tabindex', '0'); // Accessibility: Enable keyboard navigation let hoverTimer; // Debouncing setup // Mouseover or keyboard focus const updateMainContent = () => { const newImageSrc = swatch.dataset.variationImage || swatch.getAttribute('data-variation-image'); const newProductUrl = swatch.dataset.variationURL || swatch.getAttribute('data-variation-url'); console.log('Swatch Element:', swatch); console.log('Data Variation Image:', newImageSrc); console.log('Data Variation URL:', newProductUrl); if (newImageSrc && newProductUrl) { mainImage.src = newImageSrc; mainURL.href = newProductUrl; mainURL2.href = newProductUrl; } else { console.warn('Swatch missing necessary attributes. Hover behavior skipped.'); } }; swatch.addEventListener('mouseover', () => { clearTimeout(hoverTimer); hoverTimer = setTimeout(updateMainContent, 150); // Debounce hover updates }); swatch.addEventListener('focus', updateMainContent); // Keyboard navigation // Mouseout to restore default image swatch.addEventListener('mouseout', () => { clearTimeout(hoverTimer); const defaultImage = product.querySelector('.thumbnail-image img')?.src; if (defaultImage) { mainImage.src = defaultImage; } else { console.warn('Default thumbnail image not found in product:', product); } }); swatch.addEventListener('blur', () => { // Restore default on losing focus const defaultImage = product.querySelector('.thumbnail-image img')?.src; if (defaultImage) { mainImage.src = defaultImage; } }); }); });