MyBB Community Forums

Full Version: Logo Issues
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

I just recently started a forum and everything seems to be full up round except the logo.  I am a Mac user at home and my logo displays great in Safari.  But when I am at work and using Chrome, IE9 and Edge, my logo does not display.  I have had several people check on their home computers using those browsers previously listed and they have toold me that they cannot see the logo either.  It shows up on iphone and android browsers though.  I have been through all the settings, css, etc...  I am at a lost now. Hoping someone here can help me!

TIA
Deryl

the web address is : http://www.getlostoverlanding.com/forum/index.php

I have attached a screenshot of what i see on Chrome and IE9.
Paste your header template code here please and I'll take a look.
<div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
<div class="wrapper">
<center><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" height="164" width="990" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></center>
<br>
<ul class="menu top_links">
<li><font size="3" color="#ffffff"><a href="http://www.getlostoverlanding.com" target="blank">Shop</a></font></li>
{$menu_portal}
{$menu_memberlist}
{$menu_calendar}
{$menu_search}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
</div>
</div>
<div id="panel">
<div class="upper">
<div class="wrapper">
{$quicksearch}
{$welcomeblock}
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
<!-- </div> in header_welcomeblock_member and header_welcomeblock_guest -->
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
{$remote_avatar_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
{$awaitingusers}
<navigation>
<br />
Ok go to your themes CSS and look for a style titled "logo {" or something similar to that

Oh whoops never mind scratch that. I just realized the logo is in your template. Ok give me a second.
(2017-04-04, 05:06 PM)Sharree Wrote: [ -> ]Ok go to your themes CSS and look for a style titled "logo {" or something similar to that

Oh whoops never mind scratch that. I just realized the logo is in your template. Ok give me a second.

#logo {
background: #fff;
padding: 25px 0;
border-bottom: 1px solid #263c30;
}

Sorry, I was alreay posting that before I saw your edit.
Instead of using the theme logo variable, try using a direct path link to your logo instead

So replace this
<img src="{$theme['logo']}"

With
<img src="images/PATH-TO-YOUR-LOGO.png"
Also change .png to your logo image format if it's not .png
Thank you i will try that! Much appreciated!

Should it look like this? <center><a href="{$mybb->settings['bburl']}/index.php"><img src="http://www.getlostoverlanding.com/forum/images/logo.png" height="164" width="990" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></center>

(2017-04-04, 05:10 PM)Sharree Wrote: [ -> ]Instead of using the theme logo variable, try using a direct path link to your logo instead

So replace this
<img src="{$theme['logo']}"

With
<img src="images/PATH-TO-YOUR-LOGO.png"
Also change .png to your logo image format if it's not .png

Unforunately that did not work.

I have tried everything.  Anyone have a suggestion?  Please help.