<ul>
<a href="/blah"><li><img src='/profile.jpg'><span>Name</span><span>Address</span></li></a>
</ul>
I want to have two columns with the image in the left column spanning two rows and the text in the right column on an upper and lower row to the right of the image.
I tried using divs with blueprint css but then the anchor tag is displayed in a weird way - it doesn't appear to encompass the entire list element on hover but instead a sliver.
I also tried with a table layout but because I can't control the padding well with CSS it looks bulky.
How can I turn this into a two-column layout within the list element?