Adding it in
#NavBar ul li a would work if you'll set your navigation's display to block
Something like this would work:
Code:
#NavBar ul li a{
background-color:#333333;
color:#FFFFFF;
padding:4px 25px 4px 4px;
text-decoration:none;
border-width:2px;
border:solid;
border-color:#000000;
display:block;
width:200px;
}
But with the code given above, your menus will be placed vertically instead of your ideal design to place it horizontally.
If you really want it to display horizontally, then playing on your padding to
#NavBar ul li a{
background-color:#333333;
color:#FFFFFF;
padding:4px 63px 4px 63px;
text-decoration:none;
border-width:2px;
border:solid;
border-color:#000000;
}
would aide.
