Computing.Net > Forums > Web Development > IFRAME and scroll bar colours

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

IFRAME and scroll bar colours

Reply to Message Icon

Name: dhudsonuk
Date: April 4, 2005 at 02:25:31 Pacific
OS: winxp
CPU/Ram: 1.2ghz 512mb
Comment:

I am attempting to change the colour of the verticle scroll bar in my iframe and for some reason I cannot locate any code which can assist me. I only want to see the up and down arrows and I want the actual bar to be invisible. Is this possible?

Thanks

Den



Sponsored Link
Ads by Google

Response Number 1
Name: Michael J (by mjdamato)
Date: April 4, 2005 at 03:02:56 Pacific
Reply:

The scrollbars of an IFRAME belong to the document "contained" in the IFRAME. So, you need to modify the scrollbar colors for the IFRAME page - not the page that will include the IFRAME.

To make the bar "invisible" you will need to give all the elements of the scrollbar the same color, except the arrow-color. You cannot give the "arrow button" (the area around the arrow) a color because it shares the same color as the bar. The following will give you an all black scrollbar with white arrows:

<style>
BODY {SCROLLBAR-FACE-COLOR: #000000;
SCROLLBAR-HIGHLIGHT-COLOR: #000000;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #ffffff;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #000000; }
<style>


Michael J


0
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Web Development Forum Home


Sponsored links

Ads by Google


Results for: IFRAME and scroll bar colours

Hiding IE Menu Bar and Scroll Bar www.computing.net/answers/webdevel/hiding-ie-menu-bar-and-scroll-bar/1084.html

Validation Issues www.computing.net/answers/webdevel/validation-issues/1593.html

Iframe scroll bars www.computing.net/answers/webdevel/iframe-scroll-bars/1438.html