I want to customize my navigation menu by adding an image above the text. The image should be displayed above the text for each navigation item.
Here is my HTML code:
<ul class="nav">
<li class="whoweare"><a href="#">who we are</a></li>
<li class="services"><a href="#">services</a></li>
<li class="contact"><a href="#">contact</a></li>
</ul>
This is my CSS code:
ul.nav {
list-style: none;
border-top: 20px solid #FFF;
}
ul.nav li {
float: left;
text-align:center;
width: 23%;
}