I need help with positioning an appointment booking widget in my Qualtrics survey. I’m trying to add a scheduling button from Acuity that lets participants book interview slots, but the widget keeps appearing at the very bottom of my survey page instead of where I want it.
I’m adding the code through the rich content editor by clicking the source button, but I’m not sure if this is the right approach. Here’s the widget code I’m working with:
<!-- Acuity booking widget start -->
<link href="https://acuityscheduling.com/js/embed.css" rel="stylesheet">
<script src="https://acuityscheduling.com/js/embed.js" type="text/javascript"></script>
<script type="text/javascript">
Acuity.initBookingWidget({
url: 'https://acuityscheduling.com/schedule.php?owner=12345',
buttonText: 'Book your appointment',
backgroundColor: '#ff6600',
showBranding: true
});
</script>
<!-- Acuity booking widget end -->
The button shows up and works fine, but it’s positioned way down at the bottom of the survey page. Is this a problem with how I’m inserting the code, or is there something wrong with the widget code itself that’s causing this positioning issue?