Post by Shorty on Jan 18, 2013 14:57:42 GMT -8
M³ replace your entire Forum Wrapper with this:
Mike Replace the script part I gave you with this :
<script>
Edit: Hang on while, I edit the post.
[/code]
<!DOCTYPE HTML>
$[tag.html.open]
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>$[title] | $[forum.name]</title>
$[head]
</head>
<body>
{if $[maintenance_mode]}
<div class="maintenance-header">
{if $[can.disable_maintenance]}<p>Finished with maintenance? $[disable_maintenance_link].</p>{/if}
</div>
{/if}
<div id="wrapper">
<header>
<div id="banner-container" role="banner">
<h2 id="banner">
<a id="logo" href="/">$[forum.title]</a>
</h2>
</div>
<a id="navigation-skip" href="#content" accesskey="s" class="aria-hidden">Skip Navigation</a>
<div id="navigation-menu" class="ui-helper-clearfix">
<ul role="navigation">
{foreach $[navigation.menu]}
<li>
<a{if $[navigation.menu.active]} class="state-active"{/if} href="$[navigation.menu.href]" accesskey="$[navigation.menu.accesskey]">
$[navigation.menu.name]
{if $[navigation.menu.notification.total]}
<div class="tip-holder" onclick="window.location='$[navigation.menu.notification.href]'; return false;">
<div class="tip-number">$[navigation.menu.notification.total]</div>
<span class="tip"></span>
</div>
{/if}
</a>
</li>
{/foreach}
</ul>
<p id="welcome">
{if !$[current_user.is_member]}
Welcome Guest. Please $[login_link] or $[register_link].
{else}
<span>Welcome $[current_user.name].</span> $[logout_link]
{/if}
</p>
</div>
</header>
$[header]
$[participated_threads_link]
<div id="navigation-tree">
$[navigation.tree]
</div>
<div id="content" role="main">
{if $[notice]}
<div class="container">
<div class="title-bar"><h2>$[notice.title]</h2></div>
<div class="content pad-all cap-bottom">
$[notice.message]
</div>
</div>
{/if}
$[content]
$[shoutbox]
<div class="container">
<div class="title-bar"><h2>ProBoards Links</h2></div>
<div class="content cap-bottom" style="padding:5px;">
<div align="center"><span class="movepblinkshere"></span></div>
</div>
</div>
</div>
$[footer]
<script>
$('span.movepblinkshere').append($('p.footer-text'));
$('span.movepblinkshere').append($('a:contains(Click here to remove banner ads from this forum)'));
$('span.movepblinkshere').append($('div.footer-links'));
</script>
{if $[is_mobile_browser]}
<br /><p class="center">Switch to the $[mobile_switch_link].</p>
{/if}
</body>
</html>
Mike Replace the script part I gave you with this :
<script>
$('span.movepblinkshere').append($('p.footer-text'));
$('span.movepblinkshere').append($('a:contains(Click here to remove banner ads from this forum)'));
$('span.movepblinkshere').append($('div.footer-links'));
</script>
</script>
Edit: Hang on while, I edit the post.