> Hi ! I can't figure out why their is a white space between the two last
> block of my webpage, they are not on the same master div and they act
> like
> ghosts !!
> 
> If the block at right "Derniers messages du forum" grows, the block
> "Comprendre dotnetnuke rapidement" at left is pushed down. ... does
> anyone
> have a suggestion ? I am using Chrome on Mac OSX
> 
> Link : http://bit.ly/aGKQiZ
> 
> Screenshot : http://img59.imageshack.us/img59/6968/20100927235937.jpg
> 
> In yellow, the white space I would like to kill.

C'est normal :)

You are clearing two floats in the left column using <div
class="clear"></div>
And your rule for that class is .clear {clear:both;} so what's happening is
that you are clearing the right column as well ;-)

A quick/easy fix is to replace "both" with "left".
A better fix would be to get rid of the empty div you're using and go with a
technique that contains floats without structural markup.

You could try:

#dnn_ctr414_ContentPane {
  display:inline-block;
  Width:520px;
}

--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz

______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to