If you want the links to appear above your boxed layout like in your mockup (first screenshot in your first post) you need to paste in your link code between
<body id='top'>
and
<div id='wrap_all' class='boxed'>
so it looks like:
<body id='top'>
<div class="center" style="margin-left:1000px;"><a href="">Link</a></div>
<div id='wrap_all' class='boxed'>
Note: You can change margin left to any value you like. You can also create a new class in css and delete the style declaration.
If you want to solve the problem with float:right; (which is much better) you need to change the .boxed class in style.css - you're right the boxed content overlaps the link div, so that you can't see it anymore. So change:
.boxed{
position: relative;
margin:15px auto;
width:1000px;
}
to something like:
.boxed{
position: relative;
margin:45px auto 15px;
width:1000px;
}
The Dude