Reputation: 1957
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
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