MyBB Community Forums

Full Version: Need help with making my header banner clickable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Guys

My php is quite basic.

I've been attempting to make my header banner clickable to index.php

At the moment my header banner is in two parts. The main banner and a logo on the left. The small logo on the left is clickable and sends the member to index.php

I've searched the forums and googled this for quite some time but have had to give in and ask for help on this one as I Just can't work out what to do.

The site concerned is

www.deadmanscrosszone.com


Thanks in advance if anyone is able to point me in the right direction

Chris
Make the following edits to your templates (header).

<div id="header">
<a href="http://deadmanscrosszone.com/index.php">
<div class="logo"><br /><img src="http://deadmanscrosszone.com/images/Amiral/logo.png" alt="Deadmans Cross Zone - Card Trading Forum" title="Deadmans Cross Zone - Card Trading Forum" /></div>
</a>
</div>
Thanks for your help, but that's just doing the same as it is now. It's making the left hand logo clickable which it already is.

I have posted 2 pics. The top one is how the site works now with the ringed area clickable.

The second pic show the whole area that I want clickable.

I have a single image that merges the two existing images ready to be uploaded to the server.

I hope this makes sense. Thanks for the assistance. Really stuck on this one.

[Image: fNFR0Zz.png]

[Image: TsgZhCj.png]


Thanks

Chris
In your header template, find:

<div class="header">
<div id="header">
<div class="logo"><br /><a href="http://deadmanscrosszone.com/index.php"><img src="http://deadmanscrosszone.com/images/Amiral/logo.png" alt="Deadmans Cross Zone - Card Trading Forum" title="Deadmans Cross Zone - Card Trading Forum" /></a></div>
</div>
</div>

Change it to:

<a href="http://www.deadmanscrosszone.com/index.php"><div class="header">
<div id="header">
<div class="logo"><br /><img src="http://deadmanscrosszone.com/images/Amiral/logo.png" alt="Deadmans Cross Zone - Card Trading Forum" title="Deadmans Cross Zone - Card Trading Forum" /></div>
</div>
</div></a>
Genius. Thank you very much!