Hide Overflow Scroll Bar

Hello, I need some help in removing the scroll bars on both these overflow div boxes.

Where do I change/write code to do so?

https://jhades-wondrous-site-530cfcaf0d5aba805e.webflow.io/

If any help would be highly appreciated :slight_smile:

Thank you,

where do i write the code though? do i need to export the code?

Hi @LuvonVO place your code in page settings. You can learn more about custom code on WFU but it is down now giving 303 (at least for me in Safari).

yeah this didn’t work…


how do i remove the scroll bars on the webpage.

instructions like i’m a 5 year old would be helpful.

hi @LuvonVO here is code that solve your request

.scroll_div {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll; 
}

.scroll_div::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

xD thank you stan :smiley:

hi @LuvonVO glad to help. If issue doesn’t persist feel free to close your request as solved by checking appropriate response as solution.