MyBB Community Forums

Full Version: Set hyperlink beside/below header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'd like to add a button that says "Vote" beside / below my header that says "Two Creepers One Craft" in bold. ( www.2c1c.net )
How would I go about doing that while hyperlinking the image in the code?

Code for the template is...
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{myshoutbox_rape}
{$forums}
{$boardstats}
<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>
<A HREF="http://www.2c1c.net"><IMG SRC="IMAGE LINK HERE">Vote</A>

Place it in the header template, not index.
(2012-01-27, 01:35 AM)Solidus Wrote: [ -> ]
<A HREF="http://www.2c1c.net"><IMG SRC="IMAGE LINK HERE">Vote</A>

Place it in the header template, not index.

Great, thanks.