Change the colors of the scrollbars
These colors are terrible but you can see them easily ...........
Add Before BODY
<style>
BODY {
scrollbar-face-color: pink;
scrollbar-highlight-color: gray;
scrollbar-3dlight-color: yellow;
scrollbar-darkshadow-color: blue;
scrollbar-shadow-color: red;
scrollbar-arrow-color: black;
scrollbar-track-color: cyan;
overflow-x: auto;
}
<!--
BODY {
xx overflow: hidden;
}
-->
&ly;/style>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
To get rid of the scrollbar at the side use:
style="overflow: hidden"
or style block
BODY {
overflow: hidden;
}
or scripting...
document.body.style.overflow="hidden";
OR ... HORIZONTAL
overflow-x: hidden;
or vertical:
overflow-y: hidden;