CreatorCaz
05-15-2003, 07:01 PM
Does anyone have the code or a tutorial for making a DHTML scrollbar where you make the arrow images and then use them instead of a normal scrollbar, you get what I mean? Can anyone give me any help, please?
|
View Full Version : Need DHTML scrollbar code please! CreatorCaz 05-15-2003, 07:01 PM Does anyone have the code or a tutorial for making a DHTML scrollbar where you make the arrow images and then use them instead of a normal scrollbar, you get what I mean? Can anyone give me any help, please? amicus 05-15-2003, 07:14 PM i'm not sure if you can change the little arrows in the scrollbars but you can change the colors using css. <style type="text/css"> body { scrollbar-face-color: #000000; scrollbar-highlight-color: #000000; scrollbar-3dlight-color: #000000; scrollbar-shadow-color: #000000; scrollbar-darkshadow-color: #000000; scrollbar-track-color: #000000; scrollbar-arrow-color: #000000 } </style> CreatorCaz 05-15-2003, 08:16 PM thanks but that's just simple a css scrollbar. what i mean is where you create your own images to substitute for the different parts of the scrollbar. i've seen it done and i was just wondering how you did it. freakEgurl 05-15-2003, 09:51 PM look around in http://www.dynamindrive.com or did you mean this >> http://codephobia.com/tutorials/view.php3?idnum=1 CreatorCaz 05-16-2003, 06:44 AM ok, thankies. i already found the code phobia tutorial before but it looked a bit hard, i was wondering if there were any easier ways, but since that's come up again, i suppose there aren't! i'll have to look at the code more carefully. ^_^ Alcy 05-17-2003, 02:06 AM There's this one (http://www.dhtmlshock.com/scrollers/APScrollableArea/default.asp) as well ^^ |