Hi there asa,
I have looked at your CSS and it appears that when you added this...
[color=navy]#links {
padding:10px 0 0 20px;
font-size: 12px;
}
[/color]
...to it, you somehow erased the closing curly bracket "}" from the #name rules above it. :eek:
You also did not replace this...
[color=navy]#links li {
display:inline;
margin:10%;
}
[/color]
...with this...
[color=navy]#links li {
margin-bottom:5px;
}
[/color]
I would suggest that you go back to your CSS file and make certain that after these
latest changes that it looks like this...
[color=navy]#name {
margin:10px 100px 25px;
font-size:50px;
text-align:center;
color:#000000;
font-family: Arial,Geneva,
SunSans-Regular,sans-serif;
}
#links {
padding: 10px 0 0 100px;
font-size: 12px;
}
#links li {
margin-bottom:5px;
}
[/color]
You will then have the inch margin to the left. 
Also learn the carpenters golden rule...
"Measure twice, cut once."
...it will save you and me a lot of wasted time. 
coothead