Link to home
Start Free TrialLog in
Avatar of way2rach
way2rachFlag for United States of America

asked on

how to style a scroll bar

is there a way to style my scroll bar (see attached). I want to style it to match my slideshow. From what I researched online, using CSS to style scroll bars isn't supported by modern browsers. I am looking for an easy way to do that using j-query/js. Any useful references or suggestion on how to go about doing it will be appreciated.
User generated image
Here is the link to the page:
http://www.mastodonmarket.com/org/index.asp

Here is the related CSS property (I just set the overflow property to auto):
#slidearea {
    float: left;
    height: 81px;
    margin-left: 5px;
    overflow-x: auto;
    position: relative;
    width: 456px;
    overflow-y: hidden;
}

Thanks in advance for the help!
SOLUTION
Avatar of Mrunal
Mrunal
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of way2rach

ASKER

Thanks for the answer. I am going to play around with it today.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the help. I am going to try out the above.