Changing scrollbar color

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Changing scrollbar color

    How do I change the color of the users scrollbar?


    goingpostal101 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Flash Textarea Scrollbar Color Change
      Is it possible to change the color of the scrollbar of the textarea component using flash professional 8.0. Thank you.
    2. changing 3D object color
      Hello, I want to change the color of a 3D object. This object is created with mesh and one of its face is in red. When I click a button, I want...
    3. Changing Color
      I just did a logo in Freehand mx and then changed the attributes of my strokes to "brush" then used the "default Paint" function. It looks great but...
    4. changing location of the scrollbar
      When a text Box's BoxStyle is set to Scroll, the scroll bar seems to always be on the right-hand side of the text. Is there a possibility that this...
    5. Iframe scrollbar color
      How do I change the color of the scrollbar located within the iframe?
  3. #2

    Default Re: Changing scrollbar color

    IE Only:

    <style type=""text/css>
    <!--
    html {
    scrollbar-3d-light-color:#999999;
    scrollbar-arrow-color:#FFFF33;
    scrollbar-base-color:black;
    scrollbar-dark-shadow-color:#333333;
    scrollbar-face-color:#666666;
    scrollbar-highlight-color:#999999;
    scrollbar-shadow-color:black;
    }
    -->
    </style>

    --
    Ken Ford
    Certified Dreamweaver MX Developer
    PVII Support
    [url]http://www.projectseven.com[/url]

    > How do I change the color of the users scrollbar?
    >
    >

    Ken Ford - PVII Support Guest

  4. #3

    Default Re: Changing scrollbar color

    search in macromedia extensions

    [url]http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_us&view=sn105&viewName=Exchange%2 0Search[/url]

    in dreamweaver exchange put scrollbars an download IE5.5 Custom Scrollbars
    extension.

    Fabian

    "Ken Ford - PVII Support" <kford@projectseven.com> escribió en el mensaje
    news:bg241m$oja$1@forums.macromedia.com...
    > IE Only:
    >
    > <style type=""text/css>
    > <!--
    > html {
    > scrollbar-3d-light-color:#999999;
    > scrollbar-arrow-color:#FFFF33;
    > scrollbar-base-color:black;
    > scrollbar-dark-shadow-color:#333333;
    > scrollbar-face-color:#666666;
    > scrollbar-highlight-color:#999999;
    > scrollbar-shadow-color:black;
    > }
    > -->
    > </style>
    >
    > --
    > Ken Ford
    > Certified Dreamweaver MX Developer
    > PVII Support
    > [url]http://www.projectseven.com[/url]
    >
    >
    > > How do I change the color of the users scrollbar?
    > >
    > >
    >
    >

    Fabian Perich Guest

  5. #4

    Default Re: Changing scrollbar color

    That extension will not work correctly in IE6 if the page contains a full
    DOCTYPE.

    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    Dreamweaver Extensions - DesignPacks - Tutorials - Books
    ---------------------------------------------------------------------
    The PVII Newsgroup | [url]news://forums.projectseven.com/pviiwebdev[/url]
    The CSS Newsgroup | [url]news://forums.projectseven.com/css[/url]
    ---------------------------------------------------------------------



    "Fabian Perich" <fperich@terra.cl> wrote in message
    news:bg27cs$s9o$1@forums.macromedia.com...
    > search in macromedia extensions
    >
    >
    [url]http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_us&view=sn105&viewName=Exchange%2 0Search[/url]
    >
    > in dreamweaver exchange put scrollbars an download IE5.5 Custom Scrollbars
    > extension.
    >
    > Fabian
    >
    > "Ken Ford - PVII Support" <kford@projectseven.com> escribió en el mensaje
    > news:bg241m$oja$1@forums.macromedia.com...
    > > IE Only:
    > >
    > > <style type=""text/css>
    > > <!--
    > > html {
    > > scrollbar-3d-light-color:#999999;
    > > scrollbar-arrow-color:#FFFF33;
    > > scrollbar-base-color:black;
    > > scrollbar-dark-shadow-color:#333333;
    > > scrollbar-face-color:#666666;
    > > scrollbar-highlight-color:#999999;
    > > scrollbar-shadow-color:black;
    > > }
    > > -->
    > > </style>
    > >
    > > --
    > > Ken Ford
    > > Certified Dreamweaver MX Developer
    > > PVII Support
    > > [url]http://www.projectseven.com[/url]
    > >
    > >
    > > > How do I change the color of the users scrollbar?
    > > >
    > > >
    > >
    > >
    >
    >

    Al Sparber- PVII Guest

  6. #5

    Default Re: Changing scrollbar color

    Nadia,

    Using html instead of body will work with a full DOCTYPE.

    <style type=""text/css>
    <!--
    html {
    scrollbar-3d-light-color:#999999;
    scrollbar-arrow-color:#FFFF33;
    scrollbar-base-color:black;
    scrollbar-dark-shadow-color:#333333;
    scrollbar-face-color:#666666;
    scrollbar-highlight-color:#999999;
    scrollbar-shadow-color:black;
    }
    -->
    </style>


    --
    Ken Ford
    Certified Dreamweaver MX Developer
    PVII Support
    [url]http://www.projectseven.com[/url]

    > Al,
    >
    > That is interesting. To clarify, I know that this is IE only - but are you
    > saying that using the "extension" won't work with full doctype - what about
    > applying the style manually?
    > (As you can tell I haven't had a chance to test this - so will ask instead
    > :)
    >
    > I haven't used coloured scrollbars for ages, but good to know for future
    > clients requests.
    > --
    > Nadia

    Ken Ford - PVII Support Guest

  7. #6

    Default Re: Changing scrollbar color

    On Mon, 28 Jul 2003 06:52:40 -0500, "Ken Ford - PVII Support"
    <kford@projectseven.com> wrote:
    >Using html instead of body will work with a full DOCTYPE.
    >
    ><style type=""text/css>
    ><!--
    >html {
    > scrollbar-3d-light-color:#999999;
    > scrollbar-arrow-color:#FFFF33;
    > scrollbar-base-color:black;
    > scrollbar-dark-shadow-color:#333333;
    > scrollbar-face-color:#666666;
    > scrollbar-highlight-color:#999999;
    > scrollbar-shadow-color:black;
    >}
    >-->
    ></style>
    That's true. You also don't need to specify all the colors. If you
    specify only the scrollbar-base-color, IE will adjust the remaining
    colors to be compatible:

    <style type=""text/css>
    <!--
    html {
    scrollbar-base-color:black;
    }
    -->
    </style>



    Gary
    Gary White Guest

  8. #7

    Default Re: Changing scrollbar color

    Ken and Gary,

    You learn something new every day.
    Didn't know about the html instead of body - don't believe I have seen that
    anywhere !

    Great tip !!

    thanks again guys :)

    Nadia
    -----------------------------------------------
    PerreLink Design:
    Design Templates:Nav Bar Layouts:Web Biz Tools:
    [url]http://www.perrelink.com.au/resources/[/url]
    -----------------------------------------------
    :: Ecommerce & Content Management System::
    [url]http://www.yourvirtualstore.net/yvsa4.asp/[/url]
    Enter "nadia" into coupon box if buying
    and receive a 15% discount !
    -----------------------------------------------

    "Ken Ford - PVII Support" <kford@projectseven.com> wrote in message
    news:bg32re$c9s$1@forums.macromedia.com...
    | Nadia,
    |
    | Using html instead of body will work with a full DOCTYPE.
    |
    | <style type=""text/css>
    | <!--
    | html {
    | scrollbar-3d-light-color:#999999;
    | scrollbar-arrow-color:#FFFF33;
    | scrollbar-base-color:black;
    | scrollbar-dark-shadow-color:#333333;
    | scrollbar-face-color:#666666;
    | scrollbar-highlight-color:#999999;
    | scrollbar-shadow-color:black;
    | }
    | -->
    | </style>
    |
    |
    | --
    | Ken Ford
    | Certified Dreamweaver MX Developer
    | PVII Support
    | [url]http://www.projectseven.com[/url]
    |

    Nadia :TWB: Guest

  9. #8

    Default Re: Changing scrollbar color

    On Mon, 28 Jul 2003 23:40:31 +1000, "Nadia :TWB:"
    <forums@-oz-perrelink.com.au> wrote:
    >You learn something new every day.
    >Didn't know about the html instead of body - don't believe I have seen that
    >anywhere !
    Yep. IE recognizes it on the body tag only when in quirks mode.


    Gary
    Gary White Guest

  10. #9

    Default Re: Changing scrollbar color

    [url]http://www.dreamlettes.net/permalink.asp?id=52[/url]

    Scrollbars that validate

    Regards
    Ranjan
    [url]www.dreamlettes.net[/url]


    "goingpostal101" <webforumsuser@macromedia.com> wrote in message
    news:bg213h$l8o$1@forums.macromedia.com...
    > How do I change the color of the users scrollbar?
    >
    >

    ranjan - dreamlettes Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139