Ok, well, first thing you want to make your container div a fixed width, otherwise the navigation buttons are wrapping when the window is scaled. You want this at least 982px wide to fit the nav all on one line, you could make this a min-width or just width: 982px; Then you want to add a bit of a margin to the container div to emulate the mockup, around 40px should do it. Finally, you want to add a border value value to the container div to give it a black border - border: 2px solid#000. Altogether the changes to the container div in your CSS should look like this: border:2px solid #000000; margin:40px; width:982px; excuse the formatting, for some reason Return isn't working in the reply box for me at the moment (?) Had to copy+paste carriage returns wtf
Thanks again OhJay! I've uploaded the changes, you can see it at www.paidskillgames.com The only problem now is that its not aligned centrally - seems to be aligned to the left of the page. Any idea how to make it more central? Again, thank you for the help!