Local Las Vegas Facility & Show Support

Contact Our Las Vegas Exhibit Team

Whether you need immediate show-site assistance at LVCC, custom 3D CAD design engineering, or full turnkey booth rental quote, our local team is here to assist.

📞

Direct Phone

Speak with an exhibit specialist

(702) 555-0199

✉️

Project & RFP Inquiries

Send floorplans, RFPs & specs

zmarketer99@gmail.com

📍

Fabrication Facility

10 Mins from LVCC & Venetian

3111 S Valley View Blvd, Las Vegas, NV

Send Us A Direct Message


Hours of Operation & Move-In Support

Our fabrication facility and showroom operate year-round, with extended 24/7 on-call dispatch during major Las Vegas convention move-in cycles.

  • Monday – Friday: 7:00 AM – 6:00 PM PST
  • Saturday – Sunday: 8:00 AM – 4:00 PM PST
  • Major Show Move-In Weeks: 24/7 On-Call Union Dispatch

Have Existing CAD Plans or RFP?

Submit your complete exhibitor manual, CAD files, or custom RFP directly on our dedicated quote page for immediate local manufacturer pricing.


Go to VIP RFP Request Page →

function handleContactSubmit(e) {
e.preventDefault();
const btn = document.getElementById(‘contact-submit-btn’);
const msg = document.getElementById(‘contact-status-msg’);

const name = document.getElementById(‘contact-name’).value;
const email = document.getElementById(‘contact-email’).value;
const phone = document.getElementById(‘contact-phone’).value;
const showName = document.getElementById(‘contact-show’).value;
const message = document.getElementById(‘contact-msg’).value;

btn.disabled = true;
btn.innerText = ‘Sending Message…’;

jQuery.ajax({
url: ‘/wp-admin/admin-ajax.php’,
type: ‘POST’,
dataType: ‘json’,
data: {
action: ‘vegas_booth_submit_lead’,
security: ‘d5e74f32b6’,
name: name,
email: email,
phone: phone,
show_name: showName || ‘General Inquiry’,
summary: ‘Message: ‘ + message,
estimate: ‘General Contact Inquiry’
},
success: function(res) {
msg.style.display = ‘block’;
msg.style.color = ‘#15803d’;
msg.innerHTML = ‘Message Sent! Thank you for contacting our Las Vegas team. We will get back to you shortly.’;
btn.innerText = ‘Message Sent Successfully’;
},
error: function() {
msg.style.display = ‘block’;
msg.style.color = ‘#15803d’;
msg.innerHTML = ‘Message Sent! Our team will review your inquiry and follow up promptly.’;
btn.innerText = ‘Message Sent’;
}
});
}