CSS Glossy Menu

m5 design studio logo

Create a beautiful CSS Glossy menu:

Demo

HTML Code

<ul id="glossymenu">
<li><a href="page.html" >menu item 1</a></li>
<li><a href="page.html" >menu item 2</a></li>
<li><a href="page.html" >menu item 3</a></li>
<li><a href="page.html" >menu item 4</a></li>
<li><a href="page.html" >menu item 5</a></li>
</ul>

CSS Code


#glossymenu{
list-style-type: none;
margin: 5px;
padding: 0;
width: 180px;
line-height:30px;
text-align:center;
}

#glossymenu li a{
  width: 180px;
  text-decoration: none;
  background: url(images/glossyback2.gif) repeat-x bottom left;
  font-size: 17px;
  font-family: arial, Verdana ;
  color: white;
  display: block;
  padding: 3px;
  line-height:30px;
text-align:center;
}

#glossymenu li a:visited {
  color: white;
  }

#glossymenu li a:hover{
  background-image: url(images/glossyback.gif);
  color: #000000;
  }


#glossymenu li a:active{
  color: white;
  }

 
Category: CSS Tags: , No Comments

Author

M5 Design Studio

We are a small, but creative and passionate team of designers and developers specializing in web design, graphic design, branding & digital marketing.


m5 design studio logo

Simple CSS Gallery: Image & Text Rollover

Create a simple CSS gallery with thumbnails, large images and text. Demo IMAGE ONE:Lorem ipsum dolor sit ame
m5 design studio logo

CSS Text and Image Menu Rollover

Create an HTML menu with images and text styled with CSS: Demo onetwothree HTML Code <div id="menu_conta
m5 design studio logo

CSS Menu Current Page Highlighted

Create a CSS menu that indicates or highlights the current page: Demo Home About us Contact us HTML Code &


Comments are closed.