Custom Header Logo

  • Thread starter Thread starter Deleted member 745
  • Start date Start date
D

Deleted member 745

Guest
Hi,

I have tried adding a custom logo on my website but it does not show right - it's dimensions are 465 x 100 and you can see it here but its not showing right it's to small.http://chatfreaks.net/community/
Thanks for any help.​
 
how to put a "title tag" (title="forum name") towards the main logo?
So when hovering over the logo, that it shows a "title", like e.g. at youtube.com logo.
 
In the logo_block template add the code in red.

Rich (BB code):
<div id="logoBlock">
<div class="pageWidth">
<div class="pageContent">
                        <xen:include template="ad_header" />
                        <xen:hook name="header_logo">
<div id="logo"><a href="{$logoLink}" title="{$xenOptions.boardTitle}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
</a></div> 
                        </xen:hook>
                       
                        <xen:if is="@aur_ShowNoticesInHeader == true">                           
  <xen:hook name="page_container_notices">
      <xen:include template="notices" />
        </xen:hook>
                        </xen:if>
 
<span class="helper"></span>
</div>
</div>
</div>
 
Top Bottom