Reputation: 449
How would I remove the bottom space below the red box where the copyright is contained? This is caused from trying to reposition the main content area over the slider.
Thanks
Upvotes: 1
Views: 45
Reputation: 8877
Add a top:0
to your footer style as its picking up a top:-15px
from another style
footer.footer {
background: #dfdfdf;
color: #fff;
top: 0;
padding-top:0;
}
Upvotes: 3