View Full Version : scrollbar Help...


hunterjumper
02-03-2003, 07:13 PM
I wanted to add a scrollbar to part of my tables, but I want the scrollbar to have a black background, and a blue outline. How would I do this?

Thanks,
HunterJumper

thezeppzone
02-03-2003, 07:58 PM
Well for one...you cant have scrollbars in tables.....just frames..ad you can try stuff out here (http://www.asianouting.com/scrollbar) ....its a generator to see what colors you like...hope this helps

Alcy
02-03-2003, 08:17 PM
You can use a div:

<div style="background-color:#000000; border:1px solid; border-color:blue; width:#px; height:#px; overflow:auto;">
TEXT HERE
</div>

hunterjumper
02-03-2003, 10:50 PM
Thanks a lot!!

HunterJumper