Free Buttons - Free Button Service
Free Buttons - Free Button Service

Free Web Button Service
by Likno Web Button Maker!

Free Buttons

Button Gallery Search Tool:
Color:  Shape:  Texture:  Material: 
Search Results:
Obtain this tasteful olive stone button! Click here to download the entire button family and create elegant looking menus! Acquire the button family of this olive stone button for free and create eye-catching menus!
Pretty olive stone button created with Likno Web Button Maker - obtain now! Obtain this colorful olive stone button and enhance your website menu! Want to give your menus a fashionable look?  Click here to get this olive stone button!
Click here to acquire this button now! Want to give your menus an amazing look?  Click here to download this olive stone button! Want to give your menus a inventive look?  Click here to download this olive stone button!
Get and customize this beautiful olive stone button! Click here to download this family of great olive stone buttons and enhance your web projects! You can acquire this colorful olive stone button for free, click here!
Add classy olive stone buttons to your web menu! Click here to get the entire button family now! Click here to obtain the entire button family now!
Buttons per page:
Select page: 1 2 3

** Note: ALL web buttons created with Likno Web Button Maker are COPYRIGHT protected, which means that you may not resell, distribute or provide them to others through any channels (i.e template site).

  • Manipulate Scrollbar Colors Using CSS and JavaScript

    by Mike Thompson

    The thing about the default color of scrollbars is that it's dull and ugly -- usually this color is gray. Wouldn't it be nice to change this color to better fit the overall theme of your site? Luckily, Cascading Style Sheets and JavaScript can be used to do just that!

    Using CSS

    In CSS, simply add the below definitions to the top of your page to customize the browser's scrollbar colors. The great thing about CSS is that browsers that don't understand it will just skip it. Scrollbar painting is supported by IE5.5 and up.

    <style>

    <!--

    BODY{

    scrollbar-face-color:#8080FF;

    scrollbar-arrow-color:#FFFFFF;

    scrollbar-track-color:#DDDDFF;

    scrollbar-shadow-color:'';

    scrollbar-highlight-color:'';

    scrollbar-3dlight-color:'';

    scrollbar-darkshadow-Color:'';

    }

    -->

    </style>

    Bet you never realized the scrollbar consisted of that many components! The first three definitions are the most important, as they correspond to the most visible aspects of the scrollbar. Feel free to play around with the other definitions to see what they affect.

    Using JavaScript

    You can also use JavaScript to dynamically change the scrollbar color. This is useful when you wish to do something fancy, like alternating the scrollbar from one color to another. The JavaScript translation of the scrollbar CSS definitions are:

    document.body.style.scrollbarFaceColor="colorname"

    document.body.style.scrollbarArrowColor="colorname"

    document.body.style.scrollbarTrackColor="colorname"

    document.body.style.scrollbarShadowColor="colorname"

    document.body.style.scrollbarHighlightColor="colorname"

    document.body.style.scrollbar3dlightColor="colorname"

    document.body.style.scrollbarDarkshadowColor="colorname"

    Here's an example of a "blinking" scrollbar, which changes color every second:

    <script>

    var mode=0

    function blinkscroll(){

    if (mode==0)

    document.body.style.scrollbarFaceColor="blue"

    else

    document.body.style.scrollbarFaceColor="green"

    mode=(mode==0)? 1 : 0

    }

    setInterval("blinkscroll()",1000)

    </script>

    A more elaborate example of scrollbar manipulation using JavaScript, called onMouseover Scrollbar Effect, is written by Svetlin Staev. This changes the scrollbar colors when you move your mouse over and away from it.

    I'm seeing more and more sites customize the scrollbar color to blend in with the rest of their sites. I hope you find these tips useful in helping you do the same!


  •   Likno Web Button Maker © 2005-2006 Likno Software - All Rights Reserved.