Is there a way to stop a scrollbar shifting all the elements over when it appears?
Have it appear over, rather than next to the space it’s scrolling?
Is there a way to stop a scrollbar shifting all the elements over when it appears?
Have it appear over, rather than next to the space it’s scrolling?
Hello
When I encountered this problem I used some code to change the scroll-bar to invisable (and still scrollable), I dont know if thats what you are looking for but it is also an option that should be considered.
I put this code in html element
style (put inside <>)
#elementID::-webkit-scrollbar { display: none; }
#elementID{
-ms-overflow-style: none;
scrollbar-width: none;
}
style (put inside </>)
the #elementID should be named in the wanted element (i think its an RG in your case, but I dont really know)
this should make the scrollbar invisable and the elements align nicely
Thank you, I’ll give that a go