I have a div box that looks like this:
.productholder
{
width: 954px;
margin-left: 175px;
margin-bottom: 30px;
background-color: white;
border-style:solid;
border-width: 1px;
border-color: #d2d2d2;
/* gradients */
background: -webkit-gradient(linear, left top, left bottom,
color-stop(0%, white), color-stop(50%, white), color-stop(170%, #f6f6f6));
background: -moz-linear-gradient(top, white 0%, white 55%, #f6f6f6 150%);
}
And I am trying to get a structure of text and img like this example picture:

But I cant seem get it exacly like the picture, any kind of help would be appreciate on how I can get my box to look like this example picture.
I have tried this so far:
<div class="productholder">
<img src="url" alt="" />
<h2>Titletext</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer mi. Vivamu. etc</p>
<input type="submit" value="More">
<p>$599</p>
<input type="submit" value="Buy">
</div>
img{
float:left;
}
h2{
float:left;
font-size: 14px;
}
Any kind of help is appreciated!
Here is an idea – DEMO
HTML
CSS