I need to put an image in the scroll, instead of the default scroll.
Do you know if you can put an image in the scroll? either with css or jquery
Thank you!
I need to put an image in the scroll, instead of the default scroll.
Do you know if you can put an image in the scroll? either with css or jquery
Thank you!
You should only use css to position the item as fixed :
.fixedElement {
background-color: #c0c0c0;
position:fixed;
top:0;
width:100%;
z-index:100;
}