Camrin Parnell
Camrin Parnell

Reputation: 449

Remove Bottom Margin

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.

Website with issue

Thanks

Upvotes: 1

Views: 45

Answers (2)

Ikbel
Ikbel

Reputation: 7851

Your footer class must contain top: 0.

Upvotes: 0

benni_mac_b
benni_mac_b

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

Related Questions