Friday, March 25, 2011

Simple way to change the color of scrollbar using CSS

scrollbar using CSSTo change the color of a scrollbar of your website may be done quite easily. However, it should not
be a major part of your website's overall design since it may only be viewed in Internet Explorer.

Example of changing color of your scrollbar in IE Browser:

body {
scrollbar-face-color: #808080;
scrollbar-arrow-color: #FFFFFF;
scrollbar-highlight-color: #FFFBF0;
scrollbar-3dlight-color: #808080;
scrollbar-shadow-color: #FFFBF0;
scrollbar-darkshadow-color: #808080;
scrollbar-track-color: #CCCCCC;
}
P.S.
You may customize the colors as you need. Just change the hexidecimals to the color you wish to use.

Wednesday, March 23, 2011

Easy to Add a Favicon in your Website.

FaviconJust one line of HTML code you can add a Favicon to your Website. First of all generate your icon
Or, Create  your Icon in ".ico" format.
free online Favicon.con Icon generator site.

Once your Favicon.ico file was producted. Please upload it to your website and add below code into your HTML. The code should be placed after your tag:

<link href="favicon.ico" rel="shortcut icon"></link>


Sunday, March 20, 2011

Enhance Forms Using jQuery UI

jQuery makes creating UI so much easier without compromising speed and quality. In this tutorial we are going to enhance form using jQuery UI, so let’s get started.

DEMO