Hi there, Can't seem to get my Links on the left navigation to left align, or get them closer to the side of the page, I've tried padding but it doesnt let me go left only right.
Heres the code.
<div id="LeftNavigation">
<ul>
<li><a href="UnitCalculator.html" class="active" >Unit Calculator</a></li>
<li><a href="Comic.html" class="active" >Comic</a></li>
<li><a href="MotionGraphics.html" class="active" >Motion Graphics</a></li>
<li><a href="Game.html" class="active" >Driving Game</a></li>
</ul>
</div><!-- end of LeftNavigation-->
---------------------------------------------------------------------------
#LeftNavigation a {
line-height: 14px;
font-weight:bold;
margin: 0px 0px 20px 0px;
padding: 0px 40px 0px 0px;
text-decoration: none;
color: #ffffff;
border-bottom: 1px solid orange;
}
#LeftNavigation a.active{
padding-bottom: 2px;
color: grey;
}
#LeftNavigation a:hover {
border-bottom: 2px solid orange;
padding-bottom: 2px;
color

range;
}
-----------------------------------------------------------------------------
Any help would be much apreciated, thanks.