I\'ve got a horizontal navigation bar made from an unordered list, and each list item has a lot of padding to make it look nice, but the only area that works as a link is th
Or you could use jQuery:
$("li").click(function(){ window.location=$(this).find("a").attr("href"); return false; });