MyBB Community Forums

Full Version: Having trouble adding a button to the top of my forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, Im trying to add a donate button to the top of my forum page. Here is the code I am trying to use. It says "The following errors were encountered:
A potential security issue was found in the template. Please review your changes or contact the MyBB Group for support."

<a name="top" id="top"></a>
	<div id="container">
		<div id="header">
			<div class="logo"><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>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.png" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.png" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.png" alt="" title="" />{$lang->toplinks_help}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}toplinks/donate.gif" alt="" title="" />{$lang->toplinks_Donate!}</a></li>
				</ul>
			</div>
		</div>
		<div id="content">
			<div id="panel">
				{$welcomeblock}
			</div>
		<hr class="hidden" />
		<br class="clear" />
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
			<br />
Change this:
<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}toplinks/donate.gif" alt="" title="" />{$lang->toplinks_Donate!}</a></li>
To this:
<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}/toplinks/donate.gif" alt="" title="" />Donate!</a></li>
(2012-03-11, 08:08 PM)Paul H. Wrote: [ -> ]Change this:
<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}toplinks/donate.gif" alt="" title="" />{$lang->toplinks_Donate!}</a></li>
To this:
<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}/toplinks/donate.gif" alt="" title="" />Donate!</a></li>

Thanks, can I switch the position from the right of the bar to the left?
Figured that out. Thanks for the help dude that was fast!
I'll need your forum URL to help with that Smile
(2012-03-11, 08:14 PM)Paul H. Wrote: [ -> ]I'll need your forum URL to help with that Smile

Its http://www.kraftit.org but I just moved that fixed code to the top so it was on the left side of the top bar.