I am trying to split two divs into two sections, left and right. If the left is static (300 pixels high) and the right is not static (e.g. posts and comments). With footer below.
<div> <div> <div class="right"><img src="images/members/bigava/crays.png" style="width: 630px; height: 130px;" /></div> </div> <div> <div class="left" style="float: left;"><img src="images/members/ava/crays.jpg" style="width:120px; height:80px;" /></div> </div>
I made my main div with a width of 760 pixels, so with these settings I still have 10px. The problem is that I cannot assign float-right to a div with the right class and can assign float-left to a div with a left class. I tried changing the div up and down by reassigning the positions, but what I get is not what I want. Any help?
change
CSS .right { font-family: verdana; font-size: 12px; border-radius: 3px; } .left { font-family: verdana; font-size: 10px; color: #000000; border-radius: 3px; }
These are the results that I get, which I do not want. 

what I want 
Crays
source share