Forum Moderators: not2easy

Message Too Old, No Replies

iframe scrollbar color

         

th1chsn

1:40 am on Nov 1, 2007 (gmt 0)

10+ Year Member



Has anyone had any luck getting the scrollbar color to change inside an iframe? I have my iframe referencing a separate css file with the following inside that stylesheet.

body {
scrollbar-arrow-color: 3A1F03;
scrollbar-track-color: 856A4C;
scrollbar-face-color: E3F390;
scrollbar-highlight-color: C7D179;
scrollbar-3dlight-color: C7D179;
scrollbar-darkshadow-color: C7D179;
scrollbar-shadow-color: 856A4C;
}

I tried it with html,body and it didn't work in IE or Firefox.

encyclo

1:43 am on Nov 1, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It will never work in Firefox (it's unsupported as the CSS is non-standard), and for IE running in standards-compliance mode, you will need a # before each hex color code: #3A1F03, #3A1F03 etc.