To remove scrollbar from a page in Squarespace, you can follow these
#1. First, use Squarespace ID Finder to find Page ID.
In my example, we will have: #collection-6673f2adc8fa10164075f71b
#2. Use this code to Custom CSS box
#collection-6673f2adc8fa10164075f71b {
&::-webkit-scrollbar {
display: none;
}
& {
-ms-overflow-style: none;
}}
Note: This code will remove Scrollbar Only. If you need to remove Scrollbar + remove Scroll behavior, use this new CSS code
#collection-6673f2adc8fa10164075f71b {
overflow: hidden;
}