Forum Moderators: phranque

Message Too Old, No Replies

Scroll Bars in Frames

changing color

         

Stidd

4:20 pm on Jun 24, 2003 (gmt 0)

10+ Year Member



I have a a page that uses frames. The Content frame, has a scroll bar that does not fit the theme of the site. Is there a way to change the scroll bar in frames?

BlobFisk

4:25 pm on Jun 24, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hey Stidd,

There is a way, but it only works in IE. You need to use CSS and put the following in for the page you want:


body {
scrollbar-face-color: #whatever;
scrollbar-highlight-color: #whatever;
scrollbar-shadow-color: #whatever;
scrollbar-3dlight-color: #whatever;
scrollbar-arrow-color: #whatever;
scrollbar-track-color: #whatever;
scrollbar-darkshadow-color: #whatever;
}

There are usability issues with changing the scrollbar colour that are worth bearing in mind.

HTH