MyBB Community Forums

Full Version: Add quick links to here
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok this is my board

http://forum.monstermmorpg.com/


Now i want to add links to here

How can i do that ?

http://i.snag.gy/cI2Ri.jpg

[Image: cI2Ri.jpg]
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. =)
(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
You could add the html example I gave you above between your {$header} and {$overview} and that should work =)