OSS Learner
OSS Learner

Reputation: 11

Blue line on bottom of the page

There is a blue line on the bottom of the page on the following link

http://ahato.com/public_html/

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

Answers (3)

Jens Erat
Jens Erat

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

James Montagne
James Montagne

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

galchen
galchen

Reputation: 5290

#content - padding bottom should be 0px

Upvotes: 3

Related Questions