Closed (fixed)
Project:
Genesis
Version:
6.x-2.4
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
8 Dec 2009 at 07:41 UTC
Updated:
16 Dec 2009 at 07:20 UTC
hi
I set
body {
margin: 0;
padding: 0;
}
to avoid unnecessary margins in browser and
#container {
width: 100%; /* Width for IE6 */
background: url('/patterns/dgren050.gif');
}
body > #container {
width: 100%; /* Width for all other browsers */
min-width: 760px; /* set a minimum width */
}
but can't get rid of strange piece of body(?) at the bottom of the page.
would anyone explain me this behavior? if one needs to look at the test site - http://stas-arkhipov.info/
| Comment | File | Size | Author |
|---|---|---|---|
| 2009-12-08_103543.png | 10.91 KB | stanley78 |
Comments
Comment #1
Jeff Burnz commentedSet overflow:hidden on #container, its caused by clear-block.
Comment #2
stanley78 commentedthank you very much, that's it