I would like to achieve the following placement:
Two different texts (in block) floating / inline next to image. (Everything inside div).
I have been trying
I think you need the following:
HTML:
TITLE Element description
CSS:
.wrap { width: 600px; /* Just a sample value */ } .left { width: 200px; float: left; } .right { margin-left: 220px; width: 380px;}
That should do the trick. Adjust width and margin params to your needs.