Reputation: 11
There is a blue line on the bottom of the page on the following link
How to get rid of it ? It is not present on either of the other pages...
I have looked into all the sheets and cant get rid of it :(
Upvotes: 1
Views: 594
Reputation: 38722
Seems you didn't close some element in <div id="content">
. That's the blue background down there.
On main page, you've got
<div id="content">[...]
<div id="footer">[...]</div>
</div>
On the other ones
<div id="content">[...]</div>
<div id="footer">[...]</div>
I guess it's the <div class="cls">
in line 222.
Upvotes: 1
Reputation: 78710
Remove the padding from the bottom of #content
. The line is actually the background of the content div below the footer image.
Upvotes: 1