Blueprint Club Members Save up to 75% vs Vista: Join Now! Become a Member (502) 934-BLUE
Products & Services
Loading...

Video Tutorials

Welcome to our video tutorials section! Here you can learn how to prepare artwork, create an account, place an order, upload your artwork, track your order and more.

Order Product Samples

This video will show you how you can order samples of our work.

Creating An Account

Watch this video to learn how to create an account on our website.

Placing An Order Online

Learn just how easy it is to place your order online right on our website in this video.

Ordering Multiple Jobs In One Order

Learn how to place an order for multiple jobs under a single transaction in this video.

Uploading Your Artwork

This video tutorial explains how you can easily add, manage and update artwork on your orders.

document.addEventListener('DOMContentLoaded', function() { // Add fade-in class on load document.body.classList.add('page-fade-in'); // Handle clicks document.addEventListener('click', function(e) { // Find closest anchor tag const link = e.target.closest('a'); if (!link || !link.href) return; // Ignore external links, anchors, or new tabs if (link.target === '_blank' || link.href.indexOf('#') !== -1 || link.href.indexOf('mailto:') !== -1 || link.href.indexOf('tel:') !== -1 || e.ctrlKey || e.metaKey || e.shiftKey) { return; } // Check if same domain const currentDomain = window.location.hostname; const linkDomain = new URL(link.href).hostname; if (currentDomain !== linkDomain) return; // Prevent default and animate e.preventDefault(); document.body.classList.add('page-fade-out'); // Navigate after short delay matches CSS transition setTimeout(function() { window.location.href = link.href; }, 200); }); });