That pictures so small I can't see what it's supposed to look like.
However, there is only a small snippet of code in your
html so I doubt it's going to look like that????!!!!


'
This works...
html
- Code: Select all
<div id="container">
<ul class="icons">
<li><a href="#" title="">HOME</a></li>
<li><a href="#" title="">PORTOLIO</a></li>
<li><a href="#" title="">TESTIMONIALS</a></li>
<li><a href="#" title="">ABOUT ME</a></li>
<li><a href="#" title="">CONTACT</a></li>
</ul>
</div>
css which is yours
- Code: Select all
body {
font-family: Arial, Geneva, Verdana, helvetica, sans-serif;
font-size: 10px;
margin: 0px 0px 0px 0px;
color: #000000;
background-color: #302d2d;
}
a:link {
text-decoration: none;
color: #ffffff;
}
a:visited {
text-decoration: none;
color: #ffffff;
}
a:active {
text-decoration: none;
color: #ffffff;
}
a:hover {
text-decoration: none;
color: #ffffff;
}
#container{
width: 700px;
margin: auto;
margin-top: 20px;
}
ul.icons {
margin: 0px;
padding: 0px;
list-style-type: none;
}
ul.icons li {
width: 68px;
height: 68px;
padding: 9px;
margin-left: 4px;
background-image: url(images/itembg.png);
display: inline;
}
ul.icons :hover
{
width: 68px;
height: 68px;
}