Those Iframes, how can u make it so that the scrolling gray bar dont appear and instead just an arrow at the top and bottom?
Printable View
Those Iframes, how can u make it so that the scrolling gray bar dont appear and instead just an arrow at the top and bottom?
Hey!
Im sure this will work but if not someone else will probably be able to help :)
You may want to change the HEX Codes.Code:<style>
body, td {
scrollbar-base-color: FFFFFF;
scrollbar-arrow-color: 000000;
scrollbar-shadow-color: FFFFFF;
scrollbar-highlight-color: FFFFFF;
scrollbar-darkshadow-color: FFFFFF;
scrollbar-track-color: FFFFFF;
scrollbar-face-color: FFFFFF;
}
</style>
Just put that on the file inside the IFrame and it should work :)
or you could just use in your iframe scrolling="no" That will work in all browsers that support iframes.
That hides the whole scrollbar, what he wants is so it shows only the top and bottom arrow. I agree with the person who posted before however it only works in IE ;{Quote:
Originally Posted by Luckyrare
Hey
You need use CSS
You need to change the colour hex codes.Quote:
<style>
body, td {
scrollbar-base-color: FFFFFF;
scrollbar-arrow-color: 000000;
scrollbar-shadow-color: FFFFFF;
scrollbar-highlight-color: FFFFFF;
scrollbar-darkshadow-color: FFFFFF;
scrollbar-track-color: FFFFFF;
scrollbar-face-color: FFFFFF;
}
</style>
[As Opus said]
keep in mind scrollbar css only works in IE other browsers such as firefox dont support it
can u use action scripts?