MyBB Community Forums

Full Version: Add Icon for link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Add Icon for link, in Header. See on my Home page for details.

<div id="container">
<a name="top" id="top"></a>
<div id="header">
<div class="logo" align="center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<div class="menu">
<ul>
<a href="http://www.computergamess.ro/Thread-Contact-Us">Contact Us</a>
<a href="http://www.facebook.com/">Facebook</a>
<a href="http://www.google.com/">Google</a>
<a href="http://www.youtube.com/">Youtube</a>
<a href="http://twitter.com/">Twitter</a>
<a href="http://www.yahoo.com/">Yahoo</a>
</ul>
</div>
<hr class="hidden" />
<div id="panel">
{$welcomeblock}
</div>
</div>
<hr class="hidden" />
<br class="clear" />
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>{$my_stick}
<br />

Just add an image before each link:

<img src="http://example.com/images/icon.gif" />

So, for example, the Contact Us link would be like this:

<img src="http://example.com/images/icon.gif" /><a href="http://www.computergamess.ro/Thread-Contact-Us">Contact Us</a>
And if I want to icon be a link?
Add that before text, and between a href and </a>

Like this for Contact us link.

<a href="http://www.computergamess.ro/Thread-Contact-Us"><img src="http://example.com/images/icon.gif" /> Contact Us</a>
Thanks boys.