width:100%; height:100%; and set the container's overflow to hidden.overflow: hidden; border: none; width: 100%; height: 100%; if needed.If you're seeing a scroll bar on your Calendly booking tool embedded in a Webflow project, you can usually remove it by adjusting the styling of its container element.
style="width:100%; height:100%;" to adapt to its container.
hidden in the Style Panel to prevent any scroll bars from appearing.
```css
.your-class-name iframe {
overflow: hidden;
border: none;
width: 100%;
height: 100%;
}
```
.your-class-name with the actual class used for the container of your iframe.
To remove the scroll bar from the Calendly booking tool in Webflow, adjust the embed and container dimensions, set the overflow to hidden, and use custom CSS if necessary.