Images as navigation buttons

xgcell

Member
Alright so im trying to put background images with text over then as my nav buttons. For the life of me though, I cant seem to resize the ul or li. Any tips?
 

Mark

Administrator
Staff member
Plain ol' HTML/CSS

HTML:

Code:
<ul class="mymenu">
 <li><a href="/">Home</a></li>
</ul>
CSS:

Code:
.mymenu li a{
 display:block;
 padding: 5px; 
 background: #000 url(path/to/image.jpg);
}
 
Top