MyBB Community Forums

Full Version: How to change the logo - Square theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I am trying to change the logo on the Square theme with my own logo. I renamed my own logo to logo.png

I replaced images/logo.png
(This trick worked for the default theme!)

I replaced images/square/logo.png
I cleared the cache of my chrome browser but no result.
In [tools and maintenance] [cache manager] I selected "rebuild and reload all"

no result.

please help

Cees
Try going to templates> header> header template look for
<div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> Square</div>

and replace it to:

<a class="logo" href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

now the path you added when you click themes> logo will be visible.
(2015-06-22, 11:15 PM)pandabb Wrote: [ -> ]Try going to templates> header>  header template look for
<div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> Square</div>

and replace it to:

<a class="logo" href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

now the path you added when you click themes> logo  will be visible.

YES, YES, it is all magic! It works.
thanks
Cees