0

I decided to change from my text/links to image links for my navigation bar, but now my images have spaces between them. http://justxp.x10.mx/test/ How can I fix this?

DBS
  • 19
  • 4

2 Answers2

1
#navlinks a {
    text-decoration: none;
    float: left;
}
Xhynk
  • 13,513
  • 8
  • 32
  • 69
0

Set display to inline-block on menu's links elements:

#navlinks a {
    display: inline-block;
    /* hack for old IEs */
    *display: inline;
    zoom: 1;
}

enter image description here

neoascetic
  • 2,476
  • 25
  • 34