Copongcopong's Pop Pad List

Author: Copongcopong

Comments: The effect may not be best when using words like (item one, item two etc ...). Works Best For 2-digit number links and 2-letter links.

Browser support chart

HTML
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>

CSS
#navcontainer
{
width: 150px;
display: block;
}

#navlist
{
display: block;
list-style: none;
font-size: 12px;
}

#navlist li
{
list-style: none;
font-family: 'Trebuchet MS', verdana;
margin: 1px;
border: 1px solid #333;
text-align: center;
background: #fff;
display: block;
float: left;
color: #ccc;
}

#navlist li a
{
margin: 1px;
padding: 0px;
border: 1px solid #000;
font-weight: normal;
display: block;
width: 25px;
text-decoration: none;
color: #003399;
}

#navlist li a:hover
{
margin: 1px;
padding: 0px;
border: 1px solid #fff;
border-bottom: 1px solid #ccc;
border-right: 1px solid #ccc;
font-weight: bold;
}

#navlist li a#current
{
font-weight: bold;
background: #ECECEC;
border: 1px solid #999;
}


ABOUT THE CODE
Some lists within the Listamatic site had to be modified so that they could work on Listamatic's simple list model. When in doubt, use the external resource first, or at least compare both models to see which one suits your needs.