Frames and Scrollbar

A

Anna

Hi,

I'm wondering if there is a way for me to control where a scrollbar appears
on a Framed page?

I have set the scrollbar property to "if needed" and it appears as it
should, but I would want to control where it appears. Also, can I control
the color of the scrollbar?

Maybe there is an add-in available for this?

Many thanks for any suggestions.

Anna
 
S

Steve Easton

Yes, it can be done with a style tag.
To apply it to a page add this:
<style type="text/css"> body { direction:rtl; } </style>

To apply it to a frame place style = "direction: rtl;" in the frame
element

Or apply it using a class in a style sheet.

Use css to change the colors but obviously select your
own colors. You can also set the colors using hex values
##FF9428 or rgb values rgb(124,124,124)

body{
scrollbar-3dlight-color: blue;
scrollbar-arrow-color:blue;
scrollbar-base-color: green;
scrollbar-track-color: red;
scrollbar-darkshadow-color: white;
scrollbar-face-color: purple;
}

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top