MyBB Community Forums

Full Version: [SOLVED]Change link of the logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change the link of the logo, that instead of link to /forum link to my website proxy-zone.net (homepage)

Thanks Smile
Open the Header Template in the ACP. Find
<div class="logo" style="text-align:center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
Replace {$mybb->settings['bburl']}/index.php with the url of the page you wish to go to.
In the header template, find,
<a href="{$mybb->settings['bburl']}">

Replace with,

<a href="http://proxy-zone.net">

That should do it.

Or maybe configuration > general configuration
>>Board URL
Thanks guys, this is really useful. You are both welcomed at my proxy forum if you ever register.

@solidus, nice to see one more MGS fan Wink

Thanks again to both.
I can't seem to find the header file in my board template (standard installation).

Where else could it be?
(2011-05-05, 03:59 PM)website steve Wrote: [ -> ]I can't seem to find the header file in my board template (standard installation).

Where else could it be?
ACP > Themes & Styles > Templates > YOUR THEME TEMPLATES >

Expand Header > Open HEADER.

(2011-05-05, 04:15 PM)crazy4cs Wrote: [ -> ]
(2011-05-05, 03:59 PM)website steve Wrote: [ -> ]I can't seem to find the header file in my board template (standard installation).

Where else could it be?
ACP > Themes & Styles > Templates > YOUR THEME TEMPLATES >

Expand Header > Open HEADER.

Thank you. You're a star!
(2011-05-05, 04:19 PM)website steve Wrote: [ -> ]
(2011-05-05, 04:15 PM)crazy4cs Wrote: [ -> ]
(2011-05-05, 03:59 PM)website steve Wrote: [ -> ]I can't seem to find the header file in my board template (standard installation).

Where else could it be?
ACP > Themes & Styles > Templates > YOUR THEME TEMPLATES >

Expand Header > Open HEADER.

Thank you. You're a star!
Thanks.