Reputation: 2709
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
Reputation: 2597
give this one <div class="ls-thumbnail-wrapper" style="visibility: visible;">
a float: left
and it should be fixed
Upvotes: 1
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