MyBB Community Forums

Full Version: iGame Forum Theme Icon Image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have recently down iAndrew's newest forum theme known as iGame and am having trouble changing the icon image. I have one in my files and have linked to it, yet it does not change. His forum theme is located here, http://community.mybb.com/thread-165251.html
Going to the settings and changing it does nothing. Help please!
When you say icon image, do you mean the header image?

If so, there actually isn't a header image, it's an icon with text, but you can add your own header image.

Go to: AdminCP -> Templates & Style -> Templates -> igame Templates -> Header Templates -> Header

And search for the below. You can remove this add add your own image here.
<a href="{$mybb->settings['bburl']}/index.php"><i style="font-size: 30px;" class="fa fa-crosshairs fa-fw"></i> IGame</a></div>
I want to replace the crosshairs and text with an image, could you please explain how to in more detail? I am decently new to coding in html and can become quite challenging at points in time.
Replace this:
<a href="{$mybb->settings['bburl']}/index.php"><i style="font-size: 30px;" class="fa fa-crosshairs fa-fw"></i> IGame</a></div>

With something like this:
<a href="{$mybb->settings['bburl']}/index.php"> <img src="your/image/url.png" alt="logo" height="100" width="800"> </a></div>