Adding display: block to img should be good enough:
#somewhere img { width: 160px; height: 90px; display: block; }
If this somehow does not work, then the img wrapper in another element will work.
<span><img class="channelLogoImg" width="160" height="90" src="" /></span> #somewhere span, #somewhere img { width: 160px; height: 90px; display: block; }
I chose span because it is the usual choice for frivolous wrappers.
source share