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.