• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How to add more?

create downloads.htm and insert links there:
Code:
<a href="LINK">Name to Display</a>[/QUOTE]

He will need to edit his index.php file also, otherwise it will just say "Invalid subtopic, or "can't load subtopic".

Open your [b]Index.php[/b]

paste this where you see lines like this:

	case "creatures";
		$topic = "Creatures";
		$subtopic = "creatures";
		include("creatures.php");
	break;

then you only need to edit:

	case "downloads";
		$topic = "Downloads";
		$subtopic = "downloads";
		include("downloads.php");
	break;

If you want to make a new page in the navigation on your homepage, then go to: layouts - tibiacom (if you are using that)

open the [B]layout.php[/b]
click ctrl + F and type "highscores", then anywhere there (depends where you want the new page to be), below that, paste this:

<a href='index.php?subtopic=downloads'>
  <div id='submenu_bounty' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
    <div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>

    <div id='ActiveSubmenuItemIcon_biunty' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'>Downloads</div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
  </div>
</a>

I would recommend you to be familiar with working with PHP before changing anything (if you do anything wrong, it could mess up the other pages).
 
Back
Top