MyBB Community Forums

Full Version: Changing URL for header logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I have replaced the MyBB logo with my own logo file, but am having trouble with the URL to go with the logo. I amended the Header template:

Quote: <div id="header">
<div class="logo"><a href=""http://www.mykidstime.ie/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

but on my forum, it just keeps showing
Quote:http://www.mykidstime.ie/forum/index.php
when you hover over the logo.

Is there somewhere else I can change that URL?

Many thanks
You have more than 1 Theme installed? If so, you need to change the code in all header templates.
Hi,
I did have more than 1 theme installed, but when I deleted the one I don't use it still doesn't solve the problem.
would it make any difference that you have two quotes at the front of your url? Try removing one and see if you still have a problem.

a href=""http://www.mykidstime.ie/index.php"

should be

a href="http://www.mykidstime.ie/index.php"
that's it!! Thanks for spotting that, it was driving me crazy!
Glad I could help. Big Grin