With the forum theme that I have, Revolution by iAndrew, on the right hand side it has a tab saying Your Title, with Your Content below it. I would like to know how to access it so I can put whatever I wish there, whether it be ip links or such. Here is the website slashfire.site90.com, hopefully this will be an easy explanation.
http://prntscr.com/7xp8p4 Here is a image link to what the forums look like since guests are not allowed to view any information.
Just installed the theme to test it out for you

.
- Go to your admin panel.
- Go to templates & styles
- Go to Templates (on the left menu)
- Click on revolution templates
- Click on "index page templates"
- Click on "index"
- Use ctrl+f to find "your title" and you will find the box you are looking for in the HTML code, you can edit it as you wish

.
(2015-07-27, 11:27 PM)KevinVR Wrote: [ -> ]Just installed the theme to test it out for you
.
- Go to your admin panel.
- Go to templates & styles
- Go to Templates (on the left menu)
- Click on revolution templates
- Click on "index page templates"
- Click on "index"
- Use ctrl+f to find "your title" and you will find the box you are looking for in the HTML code, you can edit it as you wish
.
I had followed your instructions exactly and yet I still didnt know exactly what to edit. I had edited the words "Your Title" to servers, yet when i refreshed the server page with the new code saved, nothing changed. If you could tell me exactly how to edit it, it would be much appreciated. I would like the Your Title area to say Servers and for the Content Here portion to say PurgeRP: Here is the code to help out more.
<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 id="forums">
{$header}
<div class="side" style="float: right; width: 23%">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="float_left"><strong>Your Title</strong></div>
</td>
</tr>
<tr>
<td class="trow1">
Content here
</td>
</tr>
</table>
<br />
<script type="text/javascript">
jQuery(function(){
jQuery(".latestthreads").load("{$mybb->settings['bburl']}/portal.php .latestthreads_portal");
});
</script>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="float_left"><strong>Latest activity</strong></div>
</td>
</tr>
<tr>
<td class="trow1">
<div class="latestthreads float_left"></div>
</td>
</tr>
</table>
<br />
</div>
<div class="forum" style="float: left; width: 76%;">
{$forums}</div>
{$boardstats}
<br class="clear" />
{$footer}
</body>
{$dvz_shoutbox}
</html>
Change the code inside that template to
<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 id="forums">
{$header}
<div class="side" style="float: right; width: 23%">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="float_left"><strong>Servers</strong></div>
</td>
</tr>
<tr>
<td class="trow1">
PurgeRP
</td>
</tr>
</table>
<br />
<script type="text/javascript">
jQuery(function(){
jQuery(".latestthreads").load("{$mybb->settings['bburl']}/portal.php .latestthreads_portal");
});
</script>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="float_left"><strong>Latest activity</strong></div>
</td>
</tr>
<tr>
<td class="trow1">
<div class="latestthreads float_left"></div>
</td>
</tr>
</table>
<br />
</div>
<div class="forum" style="float: left; width: 76%;">
{$forums}</div>
{$boardstats}
<br class="clear" />
{$footer}
</body>
{$dvz_shoutbox}
</html>
Make sure you save it well. Afterwards, use a *private browsing session* to make sure there is no local cache stuck. For example in chrome: press CTRL+SHIFT+N in order to do this.
If it still didn't change, go to
admin/index.php?module=tools-cache
And click rebuild & reload all in order to purge the cache. Then try again. Close your private browsing session, and open another private browsing window and test again.
Let me know if it works.
I tested it locally and it worked instantly.