MyBB Community Forums

Full Version: remove text under cursor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So if you go to my website xxxxxx (just a test website) if you hover over the logo it will say "Elite Hack Forums" under your cursor. Just wondering how you remove or change this?
admin panel >> templates >> active theme templates >> header templates >> header

find code like 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>

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