| |
|
<style>
body { SCROLLBAR-FACE-COLOR: 9EB3D1;
SCROLLBAR-HIGHLIGHT-COLOR: 000033;
SCROLLBAR-SHADOW-COLOR: 000033;
SCROLLBAR-3DLIGHT-COLOR: 000033;
SCROLLBAR-ARROW-COLOR: 000033;
SCROLLBAR-TRACK-COLOR: 9EB3D1;
SCROLLBAR-DARKSHADOW-COLOR: 9EB3D1}
</style>Add between the <head> tags |
Check it out
----------------------> |
| |
|
| Blinking |
|
<script>
var mode=0
function blinkscroll(){
if (mode==0)
document.body.style.scrollbarFaceColor="#666699"
else
document.body.style.scrollbarFaceColor="#9EB3D1"
mode=(mode==0)? 1 : 0
}
setInterval("blinkscroll()",1000)</script>Add between the <head> tags |
|
| |
|
| No Scrollbar |
|
|
<body scroll="no">
- add to the body code.
This comes in handy when you are using
custom scroll image as shown here
http://www.dynamicdrive.com/dynamicindex2/pagescroller.htm |
|
| |
|
| Hid horizontal scrollbar |
|
|
<style>body{overflow-x:hidden; overflow-y:auto}</style>
Add between the <head> tags |
|
| |
|
| Hid vertical scrollbar: |
|
|
<style>body{overflow-x:auto; overflow-y:hidden}</style> Add between the <head> tags |
|