Website Design Edmonton       Website Design Feedback       Website Design Sitemap     Contact Website Design Company
Website Designers R Us - Home
Creating an attractive Hover Menu using CSS and JavaScript

As CSS matures, and so too web browsers in supporting it, the concept behind hover menu effects is being redefined. Pretty much gone are JavaScript based image rollover effects, replaced with something far leaner and easier to mantain, using CSS. However, one technology will never fully replace the other, and in this article, I'll show you how to create a nice CSS based menu, then enhance it further with JavaScript.

 CSS hover menu

Below is a 100% CSS based hover menu. The source code for it follows.

Example:

www.dotspecialists.com

Source:

<style type="text/css">

#coolmenu{
border: 1px solid black;
width: 170px;
background-color: #E6E6E6;
}

#coolmenu a{
font: bold 13px Verdana;
padding: 2px;
padding-left: 4px;
display: block;
width: 100%;
color: black;
text-decoration: none;
border-bottom: 1px solid black;
}

html>body #coolmenu a{ /*Non IE rule*/
width: auto;
}

#coolmenu a:hover{
background-color: black;
color: white;
}

</style>

<div id="coolmenu">
<a href="http://www.dotspecialists.com">JavaScript Kit</a>
<a href="http://www.dotspecialists.com/cutpastejava.shtml">Free JavaScripts</a>
<a href="http://www.dotspecialists.com/jsref/">JavaScript Reference</a>
<a href="http://www.dotspecialists.com">Coding Forums</a>
<a href="http://www.dotspecialists.com">Dynamic Drive</a>
</div>

The key here is to set each <a> element to have a "display: block" inside the CSS. This transforms each <a> to a block element, and react as such when the mouse hovers over it.

Ok, lets move on now to see how to use Javascript to "improve" the menu, by showing a description of each menu item onMouseover.

Return to Listing

Website Designers R us is based in Canada with branch office in Los Angeles, California. We are website developer & designer and have already created many ecommerce website design for USA, UK, and European countries. Our website development & creation is based on proper tools and techniques considering search engine optimization of the website.
 Home          ::             About Us          ::             Support            ::             Services            ::             Link Partners          ::             Contact

Copyright © 2006-2011 Website Designers R Us, a DOT Specialist Company. All rights reserved.