Web Analytics Made Easy -
StatCounter My colored scrollbar is not working - CodingForum

Announcement

Collapse
No announcement yet.

My colored scrollbar is not working

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • My colored scrollbar is not working

    I added a drop-in context box and now my colored scroll bars doesn't work.
    The site is: http:\\nwms.ohsd.net

  • #2
    Hi well i saw the problem, heres how to fix it.


    Just replace the old style with this one. What i've chenged is bold faced

    -------

    <STYLE type="text/css">
    <!--
    BODY
    {scrollbar-face-color: "red"; scrollbar-shadow-color: black;
    scrollbar-highlight-color: white; scrollbar-3dlight-color:"red";
    scrollbar-darkshadow-color: #white; scrollbar-track-color:"black";
    scrollbar-arrow-color: "black"}
    -->
    </STYLE>

    -------

    HappyScripting
    CYWebmaster.com - See why we dot com!!
    ACJavascripts.com - Cut & Paste Javascripts!
    SimplyProgram.com - Personal Blog

    Comment


    • #3
      Thank You

      I changed the script and it is now working.
      Thanks

      Comment


      • #4
        less code, looks better...

        <style>
        BODY {scrollbar-base-color: #FF0000; scrollbar-arrow-color: #000000;}
        </style>

        that'll give you the same effect with a better colour coordination...

        #FF0000 is the colour code for Red
        #000000 is the colour code for black

        ~Quack

        Comment


        • #5
          If your hex code is in pairs, for example; #000000 or #006699, you can use a single digit for each pair, so #000 and 069, would give the same results. Only when used in styling though.
          [+] Computer/PC issues [+] Silverpaw3D
          ------------------------------------------------
          Never buy a dwarf with learning disabilities...

          ...it's not big, and it's not clever.

          Comment

          Working...
          X