To remove scroll bars from overflowed div boxes in Webflow, you can make use of custom CSS code. Follow these steps:
1. Identify the specific div box: First, determine which div box you want to remove the scroll bars from. You may need to inspect the element using your browser's developer tools to find the unique class or ID associated with the div box.
2. Access the Custom Code panel: In your Webflow project, go to the Designer and click on the Settings icon (the gear icon) in the left sidebar. Then, click on the Custom Code tab.
3. Add the CSS code: Within the Custom Code panel, locate the "Head Code" section. You can input the CSS code here. Use the following code snippet as a starting point:
```css
```
Replace `your-div-class-or-id` with the actual class or ID of the div box you identified in step 1.
4. Save and publish: After adding the CSS code, click the Save button in the bottom right corner. Then, publish your project for the changes to take effect on your live site.
Now, when you preview your site or visit it live, the specified div box should no longer display scroll bars.
Please note that using `overflow: hidden` will hide the content that exceeds the dimensions of the div box. If the content is important and needs to be accessed in some way, you might consider alternative solutions such as adjusting the layout or using custom interactions to achieve the desired visual effect without compromising the content accessibility.