Azurecrusader
First Post
In fact, here, let me try to help more than my just telling you that something is wrong. . .
.content {position: absolute; top: 0%; left: 20%;} Change to:
.content {float:left; top:0px; margin-left:[Width of navigation]px}
.navigation {position: fixed; top: 1%; left: 2%;} Change to:
.navigation {width:[some width that you want here, maybe 100px]}
While percents are useful, they are often overused or used in situations where they don't make sense.
Hope that helps or is useful in some way, if not *shrugs*.
.content {position: absolute; top: 0%; left: 20%;} Change to:
.content {float:left; top:0px; margin-left:[Width of navigation]px}
.navigation {position: fixed; top: 1%; left: 2%;} Change to:
.navigation {width:[some width that you want here, maybe 100px]}
While percents are useful, they are often overused or used in situations where they don't make sense.
Hope that helps or is useful in some way, if not *shrugs*.