In your wp-layout.css you have:
hr {
display: none;
}
changing it to:
hr {
display: none;
clear: both;
}
should solve the problem.
Thread Starter
to
(@to)
i’ve tried it, it’s the same, any other method??
thanks
.narrowcolumn:after {
content: ".";
display: block;
height: 0;
overflow:hidden;
clear: both;
visibility:hidden;
}
* html .narrowcolumn { height: 1%; }
But you really should fix your markup. Lots of XHTML mistakes. That may cause trouble too.
Put this under your BODY section in the CSS file:
background: url("http://victoria.ithium.net/images/bg.gif");
Sorry, I made a mistake (’twas late…). You need this:
`#page:after {
content: “.”;
display: block;
height: 0;
overflow:hidden;
clear: both;
visibility:hidden;
}
* html #page { height: 1%; }
Thread Starter
to
(@to)
yeah~~
finally fixed it!!
Thanks a lot!!