Did some digging through the directory structure and finally found the skin_global.php file and it worked like a charm (-:
My next question, i want to add a custom script in there that counts down the number of members in a particular group.
Here's my code:
>echo "<center>";
mysql_connect("***", "***", "***");
mysql_select_db("***");
$getr = mysql_query("SELECT * FROM *** WHERE mgroup=11");
$numrows = mysql_num_rows($getr);
$licleft = 30 - $numrows;
if($numrows < 30) {
echo "<font color=\"green\" class=\"btext\">There are <font color=\"red\"><b>$licleft</b></font> licenses left before official launch</font></center>";
}
if($numrows == 0) {
echo "<b><font class=\"btext\" color=\"0059AC\">EzyDrop has now launched! Please see below for more details on new license packages and prices.</font></b><br><br>";
}
The code works and does precisely what i need, what i'm not really sure on is where to stick it so that it will display where i want it (centred beneath the member_bar).
How would I go about it, even if it's a RTFM, or a point in the right direction to said manual that would be much appreciated.