Hello everyone!
Ingin membuat sidebar yang cakep? Saya memiliki alternatif terbaik untuk kamu jika menggunakan Elementor sebagai page builder-nya. Simak, yuk!
Dukung EstehC.
CSS Code
Mulai aktifkan container scroll:
selector {
overflow-y: auto;
max-height: 100vh;
padding-right: 15px; /* atur di sini */
}
Atur offset untuk bottom container-nya:
/* offset untuk bottom */
selector {
position: -webkit-sticky; /* safari */
position: sticky;
top: 0; /* jarak atas */
max-height: calc(90vh - 100px); /* jarak bawah */
overflow-y: auto;
}