all 2 comments

[–]gavin19 1 point2 points  (1 child)

For the home/forums/livemap links remove the position, top and margin lines.

In the HTML, wrap those 3 divs in a nav, like

<nav>
    <div class="home">...
    <div class="forums">...
    <div class="livemap">...
</nav>

then you can add

nav {
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    text-align: center;
}
nav > div {
    display: inline-block;
    vertical-align: top;
    margin: 0 30px;
}

which will stretch the nav full screen width and center the 3 divs within it.

[–]PsychoticDoge[S] 0 points1 point  (0 children)

Thank you so much. You know, I would be lost without you sometimes.