First problem is that the #content div drops approx 50px compared to the
#sidebar. I really can't see what's causing this. It's an IE problem only!


Hi, in 'main.css' change the margin value of generic element h3 (line 160) from margin: 40px 0 0; to margin:0;


Next problem is that I use a bg image in my #wrapper (the vertical line splitting the #content from #sidebar). Why is it that if I have shorter content than the length of the #sidebar the line don't stretch...

You should clear the float of the #sidebar div,
try to add this rule

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

http://www.positioniseverything.net/easyclearing.html



Gianni Cuccu - http://www.getidea.it

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/




______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to