Hi guys Just totally messed with holidays and i need this fixed: #wrapper { width: 880px; height: auto; margin-left:auto; margin-right:auto; } Why the hell is this not working properly? I want to get the "faux" sensation that left column goes all the way down (on auto). Only way to work is to change the wrapper (height:auto) value to exact pixel say, 1500px. Ideas?
Just solve it Duh, i'm really tired: #wrapper { width: 880px; display: table; margin: 0px auto; background-color: #CCD9FB; } And that's it.
try #wrapper { width: 880px; [B]min-height:500px !important; height: auto !important; height:500px; [/B]margin-left:auto; margin-right:auto; } Code (markup): Just put anything you want to use minimum (500, 600 etc)
Did a test but it doesn't work as supposed. No problem since the fix i placed above works as a charm in FF and IE.