Hello!
Can anyone tell me why the footer is out of alignment on the interior pages, but looks fine on the homepage?
Thanks!
http://www.realestatecarrboro.com/about/
Fahad Murtaza answers:
On line 1146 of style.css, add this to footer's CSS
margin: 0 auto;
Footer doesn't need to be in content div for that. Just use the above css within #footer CSS.
Linda M comments:
Perfect!
Thank you :)
Kailey Lampert answers:
Footer should be inside the #content div to inherit the correct alignment
If moving the markup isn't feasible, you can adjust the margin styles on #footer to
#footer {
margin: 35px auto 15px;
}