Page 1 of 1
Invisible scroll bar . Disable but still working
Posted: Wed Aug 24, 2022 4:11 pm
by amir2314
Hi dear pablo .
.
How can i hide the scrollbar but still scroll ?
.
Is there any html or custom css code to doing that ?
Re: Invisible scroll bar . Disable but still working
Posted: Wed Aug 24, 2022 4:37 pm
by crispy68
I'm not Pablo, but you can try to add this CSS code:
Code: Select all
<style>
/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.example {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
</style>
Change ".example" to the ID of the object.
Re: Invisible scroll bar . Disable but still working
Posted: Wed Aug 24, 2022 4:52 pm
by amir2314
crispy68 wrote: Wed Aug 24, 2022 4:37 pm
I'm not Pablo, but you can try to add this CSS code:
Code: Select all
<style>
/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.example {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
</style>
Change ".example" to the ID of the object.
Hi dear crispy68 . thanks A lot For the consider

is it work for all Breakpoint ?
Re: Invisible scroll bar . Disable but still working
Posted: Wed Aug 24, 2022 5:45 pm
by crispy68
Of course!