treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Horizontal UL Problems

  • Hi Everyone,
    About a week ago I posted about a problem with ie6 not displaying my ul horizontally. I almost have it where I want it thanks to everyone's help. However I have ran into yet another small problem. The li's gradually move down the page. Its like they are trying to line up but not quite. I am stumped. Any help would be appreciated.

    http://www.ebowersdesigntest.com/html/media.html
  • I usually just have a
    li{ float: left; }
    li a{ display: block; width: x; height: x; }


    try taking off the display: inline on the 'li' and the float: left on the 'li a'
  • hey thanks, that worked for me.