As a beginner, I'm seeking help to identify where I may be going wrong. My goal is to have the "Dealer" and "Private Party" buttons appear next to the iPhone picture on the left-hand side of the image. Thank you in advance for any assistance.
HTML:
<div class="recent-trade-img" style="margin:10px 0 0 0">
<input class="sell-type" value="Dealer" type="button"><input class="sell-type" value="Private Party" type="button><a href="prices_iPhone_2G_16GB_ATT.html"><img src="images/specs_iPhone_2G.jpg" width="186" height="182" alt=""></a>
</div>
<div class="name">
<a href="prices_iPhone_2G_16GB_ATT.html">iPhone 2G<br> 16GB AT&T</a>
</div>
CSS:
.sell-type {
background-color: #ffffff;
border: 1px solid #ccc;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
color: #0564BC;
/*text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.2);*/
border-radius: 4px 4px 4px 4px;
cursor: pointer;
font-weight: bold;
padding: 5px 0;
/*width:130px;
height:58px;*/
width:100px;
height:48px;
margin: 4px;
font-size: 14px;
background-size:70% !important;
}
.sell-type:hover {
border-color: #0564BC;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 3px rgba(0, 0, 0, 0.1);
color: #36658f;
}