So, I was able to get an image to be to the left of a li a,
http://devb.bambl.clients.blinkss.com/schedules/
but I can’t get an image to float be below a link.
http://devb.bambl.clients.blinkss.com/
I’m looking at the Classes section on the right hand side of the page. I want that image to sit below the Body pump link text.
.BodyPump a {
display:inline-block;
padding-bottom:50px;
color:#0C6;
height:100px;
width:100px;
background:url(IMAGES/BodyPump.jpg) 0 0px no-repeat;
}
<div id=“ClassesList”>
<ul id=“ClassesList”>
<li class=“BodyPump”><a href=“http://devb.bambl.clients.blinkss.com/body-pump/” target=“_blank”>Body Pump</a></li>
<li ><a class=“BodyPump” href=“#”>Body Pump</a></li>
<li class=“BodyPump”><a href=“#”>Body Pump</a></li>
<li class=“BodyPump”><a href=“#”>Body Pump</a></li>
</ul>
</div>