Get a custom created design to make your vision come to life.
More than just printing!
Blue Print Club doesn't just offer printing. By assembling a team of highly skilled and creative designers, we are able to offer a complete marketing package for you or your business. Whether you need a quick postcard for your latest promotion or an entire corporate identity created from scratch,
Blue Print Club has a solution for you.
Want to design your own work?
Use our design templates to get started with the right size and format. Design templates can be downloaded by visiting the product you are interested in and clicking on the download template link.
Shopping Cart / Design Item(s)
Create / Edit Portal
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);
});
});