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
|
|
![]() I just "got it like that". ![]() ![]() ![]() ![]() Group: Member Posts: 247 Joined: Aug 2004 Member No: 41,238 ![]() |
QUOTE(synkro @ Oct 13 2004, 7:20 PM) oh, in that case... use the code i put above, but add name="blah"... so the whole thing would be: <iframe name="blah"></iframe> then in your css <style type="text/css"> blah { width: #px; height: #px; overflow-x: hidden; overflow-y: auto; } </style> ...but your scrollbars would already be defined under your body tag, so no use in repeating them (with the exception of the horizontal scroll being disabled, or unless you want them different from the body scrollbars): body { background-color: #color; scrollbar-arrow-color: #color; scrollbar-track-color: #color; scrollbar-shadow-color: #color; scrollbar-face-color: #color; scrollbar-highlight-color: #color; scrollbar-darkshadow-color: #color; scrollbar-3dlight-color: #color; overflow-x:hidden; } Did you even read the other posts? I allready tried all that you bavarian chocklate covered testicle!!! Thanks anyways. |
|
|
![]() ![]() |