Rochester Area Coupons

20% OFF

Any order placed online with promo code: 20piz151

Make it a meal with our Super Sides!

Many of our pizza deals come with Super Sides. What's a Super Side? It's a delicious addition to your meal for a great price! Try one (or more) of the following with your next pizza dinner.

  • Chicken Fingers
  • 10 Garlic Knots
  • Boneless Wings
  • Traditional Wings
  • 10 Mozzarella Sticks
  • Stuffed Bread

The goal has always been to deliver great pizza for a great price. Our Batavia, North Chili, and Le Roy locations combine quality pizza with quality deals.

<!-- PRINT-ALL COUPON SCRIPT -->
<script>
document.addEventListener('DOMContentLoaded', () => {
  const btn = document.querySelector('.print-all-btn');
  if (!btn) return;
  btn.addEventListener('click', e => {
    e.preventDefault();
    window.print();        // simple and reliable
  });
});
</script>

<style>
/*━━  A.  Hide everything that is NOT the coupon area when printing  ━━*/
@media print {
  body *               { visibility: hidden !important; }
  .coupon-area, 
  .coupon-area *       { visibility: visible !important; }

  /* Remove the print button itself */
  .print-all-btn       { display:none !important; }

  /* Position the coupon area at the page origin */
  .coupon-area         { position:absolute; top:0; left:0; width:100%; }
}

/*━━  B.  Force US-Letter size & small margins ━━*/
@media print {
  @page {
    size: Letter portrait;   /* 8.5 x 11 in */
    margin: 0.5in;
  }
}

/*━━  C. Fit all coupons onto one page  ━━*/
/* 1) Limit grid columns on paper (2 or 3 works well) */
@media print {
  .coupon-grid {
    display:grid !important;
    grid-template-columns: repeat(3, 1fr);  /* tweak 2 or 3 */
    gap: 0.25in;
  }
  /* 2) Make sure each coupon can shrink if needed */
  .coupon-grid .w-dyn-item {
    break-inside: avoid;   /* prevent splitting */
    transform-origin: top left;
    transform: scale(0.9); /* gentle down-scaling */
  }
}
</style>