Should look like this:
[img] text text
text text
How is this accomplished?
Seems straight forward, but I\'m struggling.
Since you know the dimensions of the image:
HTML:
CSS:
#theimg{
position: absolute;
top: 50%;
margin-top: -50px; // Half the width of the image
width: 100px;
height: 100px;
}
#besidetheimg{
margin-left: 100px; // width of image
}
It's a bit of a weird way to do it. I'm not sure if there is a better way though, and it works: http://jsfiddle.net/dvLqC/