← Back to Pricing

Car Decals (Vinyl Graphics)

Custom vinyl car decals at $0.10/sq in. Perfect for vehicle graphics, windows, and smooth surfaces.

Features:

  • High-quality vinyl
  • Weather-resistant
  • Full color printing
  • Easy application
  • Priced by square inch ($0.10/sq in)
Size
12" x 12"
Square Feet
1.00 sq ft
Total Price
$14.40
Rate: $4.00/sq ft
const navbar = document.getElementById('navbar'); const mobileToggle = document.getElementById('mobileToggle'); const navMenu = document.getElementById('navMenu'); mobileToggle.addEventListener('click', () => navMenu.classList.toggle('active')); window.addEventListener('scroll', () => navbar.classList.toggle('scrolled', window.scrollY > 50)); const RATE = 4; const calcWidth = document.getElementById('calcWidth'); const calcHeight = document.getElementById('calcHeight'); const unitSelect = document.getElementById('unit'); function calculate() { const width = parseFloat(calcWidth.value) || 0; const height = parseFloat(calcHeight.value) || 0; const unit = unitSelect.value; let widthIn = width; let heightIn = height; if (unit === 'feet') { widthIn = width * 12; heightIn = height * 12; } const sqft = (widthIn * heightIn) / 144; const total = sqft * RATE; document.getElementById('calcSize').textContent = width + (unit === 'feet' ? "' × " : '" × ') + height + (unit === 'feet' ? "'" : '"'); document.getElementById('calcSqft').textContent = sqft.toFixed(2); document.getElementById('calcTotal').textContent = total.toFixed(2); } function updateLabels() { const unit = unitSelect.value; document.getElementById('widthUnit').textContent = unit; document.getElementById('heightUnit').textContent = unit; if (unit === 'feet') { calcWidth.value = 4; calcHeight.value = 3; calcWidth.step = 0.5; calcHeight.step = 0.5; } else { calcWidth.value = 48; calcHeight.value = 36; calcWidth.step = 1; calcHeight.step = 1; } calculate(); } if(calcWidth) { calcWidth.addEventListener('input', calculate); calcHeight.addEventListener('input', calculate); unitSelect.addEventListener('change', updateLabels); calculate(); } function requestQuote() { const size = document.getElementById('calcSize').textContent; const sqft = document.getElementById("calcSqft").textContent; const total = document.getElementById('calcTotal').textContent; openQuoteModal('Vinyl Decals', { 'Size': size, 'Square Feet': sqft + ' sq ft' }, { 'Total Price': '$' + total } ); }