Forum Moderators: not2easy
<style type="text/css">
* { margin: 0; padding: 0; border: 0; }
#container{
width:900px;
height:600px;
margin: 0 auto; /* remove if no centering wanted */
}
table {
width: 100%;
height: 600;
border-collapse: collapse;
}
td {
width: 10%;
}
#buttons{
position:fixed;
left: 33%;
}
</style>
<body>
<div id="container">
<table>
<tr>
<td><a name="start" id="start"></a> <img src="logo.png" style="padding-left: 33%;" alt=""></td>
<td><a name="about" id="about"></a> About Me</td>
<td><a name="social" id="social"></a>Social Network</td>
<td><a name="bio" id="bio"></a>Bio</td>
<td><a name="books" id="books"></a>My Books</td>
<td><a name="tutorials" id="tutorials"></a>Tutorials</td>
<td><a name="photos" id="photos"></a>Mu Photos</td>
<td><a name="contact" id="contact"></a>Contact Me</td>
<td><a name="links" id="links"></a>Preferred links</td>
<td><a name="end" id="end"></a>Woork</td>
</tr>
</table>
<div id="buttons">
<a href="#start">Start</a> |
<a href="#social">Social Network</a> |
<a href="#photos">My Photos</a> |
<a href="#books">My Books</a> |
<a href="#end">Go to the end</a> |
</div>
</div>
</body>
1. With working out stuff like this, give stuff a border with CSS rules while you are working on it so you can actually see what is going on, which helps massively eg:This is the best advice I've seen in this topic to date. I use it all the time to see how the layout is looking before I finally kill all borders and then tweak to compensate for their dimensions when used.
1. With working out stuff like this, give stuff a border with CSS rules while you are working on it so you can actually see what is going on, which helps massively eg: