|

This was taught to me by Avie. She says:

This works only with frames. First, use this frame code
code:
----------------------------------------------------------------------
<*iframe style="position:absolute;left:85px; top:7px;
height:411px;width:176px;" src="INDEX2.html"frameborder=0
name="frame" style="FILTER: chroma
(color=00FF80)">
* remember to take out the * above!
----------------------------------------------------------------------
Ok for INDEX2.html (which is the frame in your page), you need to
have the CSS scrollbar codes, obviously. They would look like
this:
scrollbar-face-color: #00FF80;
scrollbar-shadow-color: #616161;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #00FF80;
scrollbar-darkshadow-color: #00FF80;
scrollbar-track-color: #00FF80;
scrollbar-arrow-color: #000000
----------------------------------------------------------------------
00FF80 is the color for bright green. But it will not show up as
bright green on your page, instead it will be transparent, so it
show up as the bg image.
You can switch 00FF80 to any 6 digit number as long as you are not
using that number in your layout (except for the frame code).
|