Filter by Placement
Homepage Hero Banner Only 2 Left
Premium High Visibility Homepage
4 companies interested

Homepage Hero Banner

Premium banner placement at the top of the SPADEX event homepage. Maximum visibility with prime positioning above the fold.

  • Banner size: 1920 x 600 pixels
  • Prime above-the-fold placement
  • Clickable link to your website
  • 3-month display period
  • Responsive design for all devices
  • Monthly performance analytics report
Homepage Sidebar Banner Available
Homepage Sidebar
3 companies interested

Homepage Sidebar Banner

Prominent sidebar banner on the SPADEX homepage. Visible throughout the page scroll with consistent exposure.

  • Banner size: 300 x 600 pixels
  • Sticky sidebar placement option
  • Clickable link to your website
  • 3-month display period
  • Monthly performance analytics report
Event Listing Sponsored Slot Available
Premium Featured Event Page
6 companies interested

Event Listing Sponsored Slot

Featured placement in the event listing page with highlighted company branding. Stand out among exhibitors and sponsors.

  • Highlighted "Sponsored" badge
  • Priority listing position
  • Company logo and description
  • Direct link to booth/company page
  • 3-month display period
Registration Page Banner Only 3 Left
High Conversion Registration Page
5 companies interested

Registration Page Banner

Banner advertisement on the delegate registration page. Target visitors who are actively registering for the event.

  • Banner size: 728 x 90 pixels
  • Displayed during registration flow
  • Clickable link to your website
  • 3-month display period
  • High-intent audience targeting
Pop-up Welcome Advertisement Sold Out
High Impact First Impression

Pop-up Welcome Advertisement

One-time pop-up advertisement shown to first-time visitors. Capture attention with an impactful welcome message.

  • Pop-up size: 600 x 400 pixels
  • Shown once per visitor (cookie-based)
  • Customizable close delay (3-10 seconds)
  • Call-to-action button included
  • 3-month campaign period
Footer Banner Strip Available
Site-wide Persistent
4 companies interested

Footer Banner Strip

Persistent footer banner displayed across all SPADEX website pages. Continuous exposure throughout visitor journey.

  • Banner size: 728 x 90 pixels
  • Displayed on all website pages
  • Clickable link to your website
  • 3-month display period
  • Estimated 50,000+ impressions/month
Email Newsletter Banner Available
Email Newsletter
3 companies interested

Email Newsletter Banner

Your company banner featured in SPADEX email newsletters sent to registered participants and SEAISI members.

  • Banner size: 600 x 200 pixels
  • Featured in 6 monthly newsletters
  • Sent to 5,000+ subscribers
  • Clickable link included
  • Open rate analytics provided
Exhibitor Directory Featured Listing Available
Directory Value Enhanced Profile
5 companies interested

Exhibitor Directory Featured Listing

Premium featured listing in the online exhibitor directory with enhanced company profile visibility.

  • Top placement in exhibitor list
  • "Featured" badge on profile
  • Larger logo display (200 x 200 pixels)
  • Extended company description (500 words)
  • Social media links included

Your Cart

Your cart is empty

// Filter advertisements by tag function filterAds(tag) { const cards = document.querySelectorAll('.ad-card'); const filterBtns = document.querySelectorAll('.filter-tag'); // Update active filter button filterBtns.forEach(btn => btn.classList.remove('active')); event.target.classList.add('active'); // Filter cards cards.forEach(card => { const cardTags = card.getAttribute('data-tags'); if (tag === 'all' || cardTags.includes(tag)) { card.style.display = 'flex'; } else { card.style.display = 'none'; } }); } // Toggle features list visibility function toggleFeatures(btn) { btn.classList.toggle('open'); const featuresList = btn.nextElementSibling; featuresList.classList.toggle('show'); // Update button text const icon = btn.querySelector('i'); if (btn.classList.contains('open')) { btn.innerHTML = ' Hide Details'; } else { btn.innerHTML = ' View Details'; } } // Update quantity for advertisement function updateAdQty(adId, delta) { const input = document.getElementById('adQty_' + adId); const maxBtn = input.nextElementSibling; const max = parseInt(maxBtn.getAttribute('data-max')) || 10; let newQty = parseInt(input.value) + delta; if (newQty < 1) newQty=1; if (newQty> max) newQty = max; input.value = newQty; } // Add advertisement to cart function addAdvertisementToCart(adId) { // Look up advertisement data by ID const ad = advertisementsData.find(a => a.id === adId); if (!ad) { console.error('Advertisement not found:', adId); return; } const qtyInput = document.getElementById('adQty_' + ad.id); const quantity = qtyInput ? parseInt(qtyInput.value) : 1; const btn = document.getElementById('btnAddAd_' + ad.id); const adItem = { type: 'advertisement', id: ad.id, name: ad.name, price: ad.price * quantity, currency: ad.currency || 'USD', quantity: quantity, maxQuantity: ad.quantity_available, description: ad.description, unitPrice: ad.price, tags: ad.tags }; // Check if already in cart const existingIndex = cart.findIndex(item => item.type === 'advertisement' && item.id === ad.id); if (existingIndex > -1) { // Update existing item quantity const newQty = cart[existingIndex].quantity + quantity; if (newQty <= ad.quantity_available) { cart[existingIndex].quantity=newQty; cart[existingIndex].price=ad.price * newQty; } else { alert('Maximum quantity reached for this advertisement.'); return; } } else { cart.push(adItem); } saveCart(); updateCart(); // Show feedback btn.classList.add('added'); btn.innerHTML=' Added!' ; setTimeout(()=> { btn.classList.remove('added'); btn.innerHTML = ' Add to Cart'; }, 1500); // Reset quantity if (qtyInput) { qtyInput.value = 1; } // Open cart setTimeout(() => { if (!document.getElementById('cartSidebar').classList.contains('open')) { toggleCart(); } }, 300); }