ie scrollbar

  • gba_m
  • Student
  • Student
  • No Avatar
  • Joined: Aug 03, 2003
  • Posts: 71
  • Status: Offline

Post September 21st, 2003, 9:36 pm

How do you make the scrollbars with the same theme colors as the website :?:
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post September 21st, 2003, 9:36 pm

  • RichB
  • Guru
  • Guru
  • User avatar
  • Joined: May 17, 2003
  • Posts: 1121
  • Loc: Boston
  • Status: Offline

Post September 22nd, 2003, 1:28 am

You can use cascading style sheets to set the colors of the scrollbar. There are some online editors that will generate the code for you if you're not familiar with css.

if you know the hex colors you want you can use this
http://www.htmlbasix.com/scrollbargenerator.shtml

and this one has little popup color palettes that allow you to choose a color
http://www.g2gk.com/scrollbar/

you can find a bunch more by searching google for css scrollbar generator

the code could be used in an embedded style sheet inside the head tag and might look something like this:

Code: [ Select ]
<style type="text/css">
<!--
body {
    scrollbar-base-color: aqua;
    scrollbar-arrow-color: aliceblue;
    scrollbar-track-color: lightblue;
    scrollbar-3dlight-color: lightgrey;
    scrollbar-highlight-color: lightblue;
    scrollbar-darkshadow-color: skyblue;
    scrollbar-shadow-color: lightseagreen;
    scrollbar-face-color: lightsteelblue;
}
-->
</style>
  1. <style type="text/css">
  2. <!--
  3. body {
  4.     scrollbar-base-color: aqua;
  5.     scrollbar-arrow-color: aliceblue;
  6.     scrollbar-track-color: lightblue;
  7.     scrollbar-3dlight-color: lightgrey;
  8.     scrollbar-highlight-color: lightblue;
  9.     scrollbar-darkshadow-color: skyblue;
  10.     scrollbar-shadow-color: lightseagreen;
  11.     scrollbar-face-color: lightsteelblue;
  12. }
  13. -->
  14. </style>
Free Programming Resources

Post Information

  • Total Posts in this topic: 2 posts
  • Users browsing this forum: No registered users and 79 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.