Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

customize iframe scrollbar

Status
Not open for further replies.

royyan

Programmer
Jul 18, 2001
148
US
How do I add color effect to the iframe scroll bars? Thanks!
 
As far as I know, the IFRAME can only inherit styles from the page it has loaded, unless the page is on the same domain which loaded it.
 
try experimenting eith the style tag:
<iframe .... style="width:100">

there are a lot of attributes. try the google.

Known is handfull, Unknown is worldfull
 

Here are the CSS attributes to make a coloured scrollbar:

Code:
scrollbar-3dlight-color: #666666;
scrollbar-arrow-color: #485868;
scrollbar-base-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-face-color: #F4F4F4;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #959595;

Hope this helps,
Dan



 
Thank you guys for the reply. I tried all the ideas above. Still couldn't get it work.
I will do some research on Google to see if there is any way to do this.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top