How do I move the menu links (Portfolio, About Me, Link) from the top right hand corner to below the header image in the center?
Try adding this to your Appearance → Custom Design → CSS editor:
.blog #masthead hgroup,
.home.page #masthead hgroup {
margin-bottom: 0;
}
.main-navigation {
position: absolute;
text-align: center;
top: 275px;
width: 940px;
}
.main-navigation ul {
float: none;
display: inline-block;
}
.main-navigation li:first-child a {
margin-left: 0;
}
Note that it's best to only copy in the CSS rules that you change without copying the entire original stylesheet into the editor. It makes things easier to keep track of and the CSS will be easier to work with that way.