2013-07-30, 09:57 PM
2013-07-30, 10:51 PM
Go to AdminCP > Templates & Styles > Templates > YOUR THEME > Index Page Templates > index
You can add links by using the <a href="#">TEXT OR IMAGE</a> code. Replace the # with the link and replace the TEXT OR IMAGE with either text or an image you want.
You would want to place it somewhere before the {$forums} but after your news bar. Without seeing your templates, I can't quite tell you exactly where to put it, but it isn't too hard. =)
You can add links by using the <a href="#">TEXT OR IMAGE</a> code. Replace the # with the link and replace the TEXT OR IMAGE with either text or an image you want.
You would want to place it somewhere before the {$forums} but after your news bar. Without seeing your templates, I can't quite tell you exactly where to put it, but it isn't too hard. =)
2013-07-30, 11:27 PM
(2013-07-30, 10:51 PM)Elegant Totality Wrote: [ -> ]Go to AdminCP > Templates & Styles > Templates > YOUR THEME > Index Page Templates > index
You can add links by using the <a href="#">TEXT OR IMAGE</a> code. Replace the # with the link and replace the TEXT OR IMAGE with either text or an image you want.
You would want to place it somewhere before the {$forums} but after your news bar. Without seeing your templates, I can't quite tell you exactly where to put it, but it isn't too hard. =)
here index template
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
{$overview_headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body
{$overview_body_onload}
{$header}
{$overview}
{$forums}
{$boardstats}
if i can edit overview and add there it would also work
2013-07-30, 11:42 PM
You could add the html example I gave you above between your {$header} and {$overview} and that should work =)