Here you have a short description of removing the scroll indicator on everything!

Start by adding an element like an RG - or something similar.

Give the object an id - type “scroll” at the bottom.

Add an html element - write the following code in Apperence =

<style>

*::-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

</style>

For a specific object type RG with id what type “id1” - write this code in an html object =

<style>

#id1::-webkit-scrollbar { display: none; }
#id1{
-ms-overflow-style: none;
scrollbar-width: none;
}

</style>

Code 1 works best in an iframe example! in most web browsers.

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.