WallBB Forums
Need help with header name and logo - Printable Version

+- WallBB Forums (https://wallbb.co.uk/forums)
+-- Forum: Theme Section (https://wallbb.co.uk/forums/forumdisplay.php?fid=5)
+--- Forum: Theme Support (https://wallbb.co.uk/forums/forumdisplay.php?fid=10)
+--- Thread: Need help with header name and logo (/showthread.php?tid=330)



Need help with header name and logo - josephine.hansson - 03-26-2020

The original ones seems to have disappeared. But the logo I want to put there is not there either. I think (pretty sure in fact) I stuffed up the header template. I have copied and pasted the surrent state of it below. I have the favicon.png and logo.png images in images>focus  and I also have them in just images.





<a name="top" id="top"></a>
<div class="header">
<div class="wrapper">
<div class="logo">
<!-- If you want to use Image based logo, uncomment this              <div class="logo">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
    </div>
<div class="tophead float_right">
{$welcomeblock}
<br/>
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$remote_avatar_notice}
{$modnotice}
{$unreadreports}
{$pending_joinrequests}
{$awaitingusers}
    <div class="announcement_alert">
<div><strong><i class="fas fa-bullhorn float_left" aria-hidden="true" title="Announcement"></i> Welcome to the Deep Politics Forum <a href="{$mybb->settings['bburl']}/index.php" title="Announcement Link"><u></a></strong></div>
</div>
<navigation>


RE: Need help with header name and logo - WallBB - 03-26-2020

Replace the above template with this code
Code:
<a name="top" id="top"></a>
<div class="header">
<div class="wrapper">
<div class="logo">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
    </div>
<div class="tophead float_right">
{$welcomeblock}
<br/>
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$remote_avatar_notice}
{$modnotice}
{$unreadreports}
{$pending_joinrequests}
{$awaitingusers}
    <div class="announcement_alert">
<div><strong><i class="fas fa-bullhorn float_left" aria-hidden="true" title="Announcement"></i> Welcome to the Deep Politics Forum <a href="{$mybb->settings['bburl']}/index.php" title="Announcement Link"><u></a></strong></div>
</div>
<navigation>

Cheers
WallBB


RE: Need help with header name and logo - josephine.hansson - 03-26-2020

That did it! Thank you!


RE: Need help with header name and logo - WallBB - 03-26-2020

(03-26-2020, 09:47 AM)josephine.hansson Wrote: That did it! Thank you!
Cool