I have some text to the right of an image. It looks great in desktop view, but as I go down to mobile view, the text will start to creep up towards the top of the image. I would like this text to stay in middle alignment with the image while changing resolutions. Please see http://twoguysplayingzelda.com/news/if-link-was-evil-could-he-destroy-hyrule/ for an example. Thanks for your help!
HTML
<div class="writer-section">
<a href="http://twoguysplayingzelda.com/wp-%20content/uploads/2017/11/Writer-Hick-1.png">
<img alt="" class="alignnone size-thumbnail wp-image-5522" height="60" src="http://twoguysplayingzelda.com/wp-content/uploads/2017/11/Writer-Hick-%201-150x150.png" width="60">
</a>
<span id="writer">
By <a href="http://twoguysplayingzelda.com/hick/" target="_blank">Hick</a>
<br>
November 29, 2017
</span>
</div>
CSS
.writer-section {
overflow: hidden;
border-bottom: 1px solid #D3D3D3;
}
.writer-section img {
float: left;
padding-bottom: 10px;
padding-right: 10px;
}
#writer {
line-height: 1px !important;
font-size: 10pt;
color: #808080;
}