I know this has been up a lot of times before, but I couldn\'t find any solution in my specific case.
I\'ve got a navigation bar and I want the whole
a sir you use jquery ? if yes, you can try it :
$("li").click(function(){ $(this).find('a').click(); });
or you could use it too as css:
li{ position:relative; } li a { position:absolute;top:0px;left:0px;width:100%;height:100%; }
Choose one ... Good luck