xgcell Member Jun 2, 2014 #1 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?
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 Jun 3, 2014 #2 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); }
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); }
xgcell Member Jun 4, 2014 #3 lmao i need to not post things when im tired, i forgot the display:block; thanks for the help