Casey
Casey

Reputation: 2709

Content overlapping footer

My slideshow is overlapping my footer. In the source code, I've tried to clear the previous DIV as typically recommended:

<div class="clear"></div><!-- /clear any floats -->

This is not fixing the problem. Any ideas?

Upvotes: 2

Views: 1421

Answers (2)

Chanckjh
Chanckjh

Reputation: 2597

give this one <div class="ls-thumbnail-wrapper" style="visibility: visible;"> a float: left and it should be fixed

Upvotes: 1

Dan Fairaizl
Dan Fairaizl

Reputation: 2170

One way to solve this is to adjust the footer-wrap class to add more margin on top:

#footer-wrap {
    margin: 100px auto 120px;
}

There might be other adjustments necessary but this should fix the issue assuming your content in the sideshow stays the same height.

Upvotes: 1

Related Questions