MyBB Community Forums

Full Version: Replace Default Logo with HTML [SOLVED]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2011-07-16, 03:04 PM)faviouz Wrote: [ -> ]Replace h1 with a in global.css.

That fixed it, the text is green. Thank you so much! Have a good day!

(2011-07-15, 10:47 AM)faviouz Wrote: [ -> ]In your header template, you should find something a little bit like 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>

And to show the forum name you would do this:

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php">{$mybb->settings['bbname']}</a></div>

Basically just replace the <img> element with {$mybb->settings['bbname']}, which will output your forum's name.

Where would a novice user like myself find this?
In Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header.
Hmmmm..... can I ask what might be a really, stupidly, obviously novice question? If I want to offer multiple templates/color choices for my forum users (as in, all the "Apart" templates offered in the Mods section), will I have to change each and every header template, or is there some way to make that header change globally? (If so, I haven't seen it yet... still working and searching...) Or do I have to make changes to each file in each color's template set?
Pages: 1 2