How would I work my logo into xenforo?

DaveL

Well-known member
Currently running one of my sites on IPB3.1 and looking to make the change over to Xenforo.

One major question - How easy would it be to work my logo into Xenforo?

This is what I currently have on IPB

dl.webp
 
Last night on a test site it all worked fine! Resize the page big or small and the logo would stretch of get smaller accordingly.

Tonight on a new mock up, im having no such luck. All the settings are the same as last night and ive been through and checked and double checked but no luck. When you stretch the page, the logo wont stretch with it, despite being set at width 100%.

This is the site - Any ideas as im scratching my head here!
 
Ive had another try this morning and ive kind of got it sorted, but not quite.

I had to move some of the code around in logo_block so it went from

<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}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<img src="@headerLogoPath" width='100%' height='100%' alt="{$xenOptions.boardTitle}" />
</a></div>
</xen:hook>
<span class="helper"></span>
</div>
</div>
</div>

to

<div id="logoBlock">
<div class="pageWidth">
<div class="pageContent">
<xen:include template="ad_header" />
<img src="@headerLogoPath" width='100%' height='100%' alt="{$xenOptions.boardTitle}" />
<xen:hook name="header_logo">
<div id="logo"><a href="{$logoLink}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>

</a></div>
</xen:hook>
<span class="helper"></span>
</div>
</div>
</div>

Doing that made the logo stretch the entire width of the header, but through some of the navbar out and lost the click.

Getting there so slowly! Any pointers greatly appreciated!
 
Scrap that idea, caused too many issues with the template :(

Back to square one again! This is what ive got

<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}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<img src="@headerLogoPath" width="100%" height="100%" alt="{$xenOptions.boardTitle}" />
</a></div>
</xen:hook>
<span class="helper"></span>
</div>
</div>
</div>

And this is the problem

header.webp
 
Top Bottom