i had problems with the DD example using IE and added a class rule to the CSS to fix it
Code:
.styled-v-bar{ /* sample CSS class for a different vertical scrollbar look */
background: url(custom-scroll-bar.png) center top no-repeat;background-Color:red;
width: 10px;
margin-right: 0;
margin-bottom: 4px;
}
.styled-v-bar ins{ /* Style for the "ins" inner element, or bottom of the scrollbar */
display: block;
background: url(custom-scroll-bar.png) center bottom no-repeat;
width: 10px;
height: 4px;
position: absolute;
top: 100%;
}
.alt-scroll-holder {
overflow:hidden;
}
how ever the scroll height must exceed the parent DIV height for the scroll bar to show
Bookmarks