#scrollablebox { /* Use the ID exactly as it appears in Wix */ max-height: 500px; /* Set the height limit for the container */ overflow-y: scroll !important; /* Force vertical scrolling */ overflow-x: hidden !important; /* Disable horizontal scrolling */ border: 2px solid #000000; /* Optional: Add a border */ padding: 10px; /* Optional: Add padding inside the container */ } /* Optional: Style the scrollbar */ #scrollablebox::-webkit-scrollbar { width: 10px; /* Set scrollbar width */ } #scrollablebox::-webkit-scrollbar-thumb { background-color: #FF5733; /* Bright orange scrollbar for visibility */ border-radius: 5px; border: 2px solid #FFFFFF; /* White border around the scrollbar */ } #scrollablebox::-webkit-scrollbar-thumb:hover { background-color: #FF3D00; /* Darker orange on hover */ }
top of page
bottom of page