Business cards

Upload your card design

Standard 85 × 55 mm cards. We check size, bleed, safe zone, resolution and that your fonts are embedded.

Try it

  1. Upload the good card, it passes clean.
  2. Try the no-bleed version: the warning explains exactly what will get trimmed wrong.
  3. Switch to double-sided; the same one-page file is suddenly missing its back.
  4. Stack finishes and watch the order the uplifts apply in.

Sample files

The everyday baseline: quantity breaks and finish uplifts priced by Print Options, while Filecheck checks size, bleed, safe zone and fonts; the artwork is checked, never priced from.

Change any option and Filecheck re-checks the same file without re-uploading. Add ?fcdebug=1 to the URL to see what it is told about your selections.

How this page is wired

The Filecheck element owns the page; the Print Options form reacts over its public Page API. The blueprint (one JSON document) still declares both: the options with their prices, and the inline Filecheck workflow this page runs.

intake.on('status', s => {
  po.setFile(factsOf(s));          // facts reprice the form
  s.canProceed ? po.releaseHold('filecheck')
               : po.addHold('filecheck');
});
po.addEventListener('change', e =>
  intake.setContext(contextOf(e))); // selections re-check the file

View the raw blueprint + workflow.