Reputation: 1929
I'm trying to figure out which html elements or out of place because I'm wanting the two boxes to have the same spacing from the top as my register form. All the css is correct but not sure what elements are out of place.
Also if you notice on the register form box right below where it says Register For An Account there is a space between the the form area and that title which is not like the template. Why is that?
Upvotes: 0
Views: 49
Reputation: 3309
#content-wrapper { top: 250px; }
should do the trick (or something similar to it).
Upvotes: 1
Reputation: 5965
You are missing <div class="wrapper">
and <div class="box">
from your template, right after <div class="background"></div>
Upvotes: 1