MyBB Community Forums

Full Version: Change Selenium logo image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering how I could change the words/image "Selenium" to an image of my choice. The person who made it said that there were no images used when making that theme. Where do I look? Thanks. https://community.mybb.com/mods.php?action=view&pid=732
Selenium uses a fontawesome icon.
In the template header, find <a href="index.php" class="logo"><i class="fa fa-bolt"></i> Selenium</a>
You can replace the <i class="fa fa-bolt"></i> part with <img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /> and then the logo you'll set in the theme settings will be used.