How do I remove hyperlink line through header image

I am not seeing it. But here is something you can try:

Admin CP -> Appearance -> Templates -> header

Add the border attribute to the img tag as shown below:

Code:
<div class="pageWidth">
    <div class="pageContent">
        <div id="logo"><a href="{$logoLink}">
            <span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
            <img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" border="0" />
        </a></div>    
    </div>
</div>
 
It appears to be a Chrome issue, for me anyway. There's no line with IE 8 or Firefox 3.6.10.

Can anyone else with Chrome verify the line? If so I'll submit a bug report.
 
Top Bottom