iframe scrollbars, help....arg! |
iframe scrollbars, help....arg! |
![]()
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() Group: Member Posts: 44 Joined: Sep 2004 Member No: 52,448 ![]() |
I was wondering if there was a way to define the scrollbar colors on an iframe!
I tries defining them in the css using like: body { scrollbar-highlight-color: #000; } and etc... and i even tried iframe { scrollbar-highlight-color: #000; } I tried looking everywhere for how to do this but i cant find it anywhere!!! Someone help! |
|
|
![]() |
![]()
Post
#2
|
|
![]() hi, my name is brianna! =] ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 5,764 Joined: Jun 2004 Member No: 22,114 ![]() |
Try putting
CODE <!-- begin code provided by createblog.com --> <style type="text/css"> .iframe { scrollbar-face-color:#FEEECC; scrollbar-arrow-color:black; scrollbar-track-color:#FEEECC; scrollbar-shadow-color:#FEEECC; scrollbar-highlight-color:#FEEECC; scrollbar-3dlight-color:#FEEECC; scrollbar-darkshadow-Color:#FEEECC; background: transparent; overflow: hidden; border:none; margin:0; } </style> <!-- end code provided by createblog.com --> Then in your iframe tag put <iframe class="iframe"></iframe> I think that's how you do it, but I'm not really sure. =/ |
|
|
![]() ![]() |