Hey there, I'm new to CSS and I'm struggling with getting rid of the vertical scroll bar that shows up on mobile for a calendly widget.
Here's the embed code for the widget:
<div class="calendly-inline-widget" data-url="https://calendly.com/lohrandcompany/introduction-meeting-web" style="min-width: 320px; height: 680px;"></div>
<p>
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
The layout looks good on desktop, but I really want to get rid of that pesky vertical scroll bar that appears on my page () when viewed on mobile:
https://i.sstatic.net/GYGCD.png
I've attempted to add a media query to the custom CSS section in order to adjust the widget's height based on the screen size of the device, but unfortunately, it doesn't seem to be making any difference:
@media only screen and (max-width: 780px) {
.calendly-inline-widget {
height: 1050px;
}
}
If you have any advice or suggestions, please let me know!