HTML & CSS Snippets
Name:Custom Scrollbar
Description: Use a custom scrollbar for you web site. Please note that custom scrollbar only works in IE and is not a valid CSS property.
Code below...
<!-- Put the CSS style code between your header tags --> <!-- Just change the hex colors to your likings --> <style type="text/css"> <!-- body { scrollbar-face-color: #FFFFFF; scrollbar-arrow-color: #FFFFFF; scrollbar-track-color: #FFFFFF; scrollbar-shadow-color: #FFFFFF; scrollbar-highlight-color: #FFFFFF; scrollbar-3dlight-color: #FFFFFF; scrollbar-darkshadow-color: #FFFFFF; } --> </style> <!-- If you are using the same color on all the properties above you can use the code below --> <style type="text/css"> <!-- body { scrollbar-base-color: #FFFFFF } --> </style>