html - Float ignored in column div -
i have following project here , have configured columns use float in css in hope have image column on left , content beside it. in chrome content stays below images.
css:
#wadadetails .propinfocont .col1 { width:400px !important; float:left !important; } #wadadetails .propinfocont .col1 #loadarea img { width:420px !important; height:315px !important; float:left !important; } #wadadetails .propinfocont .col2 { width:230px; margin:0; float:left !important; }
you have defined width of both columns 100% of available space:
#wadadetails div{ width:100% !important }
getting rid of allow 2 columns side side.
Comments
Post a Comment