Get your spot

Style #5 CSS Menu



This menu is called “Style5″ and I’m not sure why.

The Menu

FAQ

  • Entire menu system is less than 3KB.
  • 2 image files, 1 css file, 1 html file.
  • Has been tested and works in over 150 broswer/operating system combos.
  • It’s FREE for you to use.

Source Code

Check out the source code below or download the zip file containing all necessary html, css, and images. The “Services” tab has the ON state by adding the “current” class to the A tag.

CSS

<style type="text/css">
<!–
#stylefive{position:relative;display:block;height:26px;font-size:11px;font-weight:bold;background:transparent url(/code/style5/images/bgOFF.gif) repeat-x top left;font-family:Arial,Verdana,Helvitica,sans-serif;border-bottom:3px solid #FF0066;}
#stylefive ul{margin:0px;padding:0;list-style-type:none;width:auto;}
#stylefive ul li{display:block;float:left;margin:0;}
#stylefive ul li a{display:block;float:left;color:#fff;text-decoration:none;padding:7px 20px 0 20px;height:19px;background:transparent url(/code/style5/images/bgDIVIDER.gif) no-repeat top right;}
#stylefive ul li a:hover,#stylefive ul li a.current{color:#fff;background:#131546 url(/code/style5/images/bgDIVIDER.gif) no-repeat top right;}
–>
</style>

HTML

<div id="stylefive">
	<ul>
		<li><a href="http://www.13styles.com/css-menus/style5/" title="css menus">Home</a></li>
		<li><a href="http://www.13styles.com/css-menus/style5/" title="css menus">About Us</a></li>
		<li><a href="http://www.13styles.com/css-menus/style5/" title="css menus" class="current">Services</a></li>
		<li><a href="http://www.13styles.com/css-menus/style5/" title="css menus">Our Work</a></li>
		<li><a href="http://www.13styles.com/css-menus/style5/" title="css menus">Contact Us</a></li>
	</ul>
</div>