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:
An artsy olive stone button for your web menu! Add stylish olive stone buttons to your web menu! A lovely olive stone button for your web menu!
Download this awesome olive stone button and enhance your website menu! Add inventive olive stone buttons to your web menu! Creative olive stone button created with Likno Web Button Maker - obtain now!
Use this family of beautiful olive stone buttons to embellish your website pages! Artistic olive stone button: get it now! Obtain the button family of this olive stone button for free
Download this marvellous olive stone button and enhance your web pages! Obtain the button family of this olive stone button for free Download this artistic olive stone button and enhance your website pages!
Acquire the button family of this olive stone button for free and create vivid menus! Click here to download this family of classy olive stone buttons and enhance your web projects! Drive your customers to the desired click with artsy olive stone buttons!
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.