MyBB Community Forums

Full Version: Need help to show hidden logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I am new to the MyBB. On my forum, my logo isn't showing up, but when I move the cursor to the center it shows hyperlink of hidden logo. Please let me know how I can make it appear normally. Thanks
Hello,

try to do this. Go to

Admin CP -> Templates & Styles -> Templates -> * Your Theme * -> Header Templates -> header

Then see if you have if you have something that looks similar but not the same please replace that code with the one below.
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Also what do you mean by hidden logo? The code above should make your logo display.
If you need anymore support please let me know.
(2017-10-12, 10:36 PM)Brian. Wrote: [ -> ]Hello,

try to do this. Go to

Admin CP -> Templates & Styles -> Templates -> * Your Theme * -> Header Templates -> header

Then see if you have if you have something that looks similar but not the same please replace that code with the one below.
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Also what do you mean by hidden logo? The code above should make your logo display.
If you need anymore support please let me know.

Thanks.. It just solved my problem. Thanks for your help.