Full Header

Stimo

Active member
Hi was wondering if someone could help me with instructions on how to set up a full header image as i currently only have the logo on the left if you see here www.rep-com.com.

Preferably I would like it 3 piece so i can edit the different images when i like. Thanks.
 
You can edit the HTML directly:

Admin CP -> Appearance -> Templates -> logo_block

This template contains the img tag for the logo. You can just add more img tags.
 
Add the red code. You need to put in the URLs of the images:

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}">
				<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
				<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
				<img src="http://www.yoursite.com/image1.gif" />
				<img src="http://www.yoursite.com/image2.gif" />
			</a></div>
			</xen:hook>
			<span class="helper"></span>
		</div>
	</div>
</div>
 
Add the red code. You need to put in the URLs of the images:

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}">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />
<img src="http://www.yoursite.com/image1.gif" />
 <img src="http://www.yoursite.com/image2.gif" />
</a></div>
</xen:hook>
<span class="helper"></span>
</div>
</div>
</div>
Appreciate it will try it when im home.
 
Sorry do you also know how to auto watch created threads? like it is set up on here. So once you create a thread you get notifications from replies etc
 
That is a table in the database. You can run the query in phpmyadmin which is a program many web hosts will preinstall for you. Phpmyadmin comes installed in hosting control panels like CPanel and Plesk.
Ok cool, i think I've done it correctly, i found it and replaced what was in there with what you said. Thanks for the support :)
 
Top Bottom