Ok how about this, guys:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
.image-shell, .inner {background: #555; color:#fff; }
.item {margin-left:240px; border: 20px solid transparent; border-left-color: #000; float:left; width: 500px}
.item .inner{float:left; width: 100%; position: relative;}
.inner h2{float: right; width:100%; }
.image-shell {padding:10px; float: left; margin: -20px 0 -20px -240px;}
.label {border-radius:5px; background: #333; text-align: center; padding:.5em 0; display:block;}
.item dt{ font-weight: bold; float: left; margin-right: .5em }
.item dt, .item dd{ padding-bottom:.5em;}
.item h2 a, .item dl{padding-left:20px;}
/* for added flexibility, .before can also be easily emulated in legacy IE using filter: */
.image-shell img, .image-shell span {position: relative; z-index: 55}
.image-shell:before {content:""; background: #555; top:0; bottom:-20px; width: 220px; left:-240px; position: absolute; }
</style>
</head>
<body>
<div class="item">
<div class="inner">
<h2><a href="#">Movie tile goes here??</a></h2>
<div class="image-shell">
<img src="200x300.gif" alt="200x300" width="200" height="300" />
<span class="label">image caption</span>
</div>
<dl>
<dt>Term:</dt>
<dd>defintion</dd>
<dt>Term:</dt>
<dd>defintion</dd>
<dt>Term:</dt>
<dd>defintion</dd>
<dt>Social:</dt>
<dd>Social media icons or links</dd>
</dl>
</div>
</div>
</body>
</html>
it is fully vertically flexible, can be adjusted to any fixed width ( I figure there's gonna be column of these anyhow). the only real limit is that the width of the pictures must be the same, but thats also good graphic design sense anyway.
Bookmarks