toktik
toktik

Reputation: 1957

Space in bottom of site

link: [removed by author]

I have space in bottom of site (~15px).

Firebug and Chrome developer tools shows nothing is there...

Which element is causing this?

Update: I itertively set display:none; and found that #content is the cause. (itself, not childrens). but why?

Upvotes: 0

Views: 46

Answers (1)

Serg Hospodarets
Serg Hospodarets

Reputation: 4678

system.base.css
line 245
in rule:

.clearfix:after {
 clear: both;
 content: ".";
 display: block;
 height: 0;
 visibility: hidden;
}


change "content" style to:
content: "";
(remove point)

Upvotes: 1

Related Questions