Post by Neko on Apr 21, 2013 12:07:31 GMT -8
forum url: www.monochromatic.boards.net/index.cgi
1. For some odd reason, on the right of the general board there is a a piece of 3px border (the border color for the forum is transparent), and I can't remove it.
2. I cannot get this code to work:
It's worked on my previous forums, so I have no clue. It is currently NOT in my main footer.
3. I can't get this code to work either, and it has also been used on other forums of mine and is NOT in my global header:
Thanks for any help :3
1. For some odd reason, on the right of the general board there is a a piece of 3px border (the border color for the forum is transparent), and I can't remove it.
2. I cannot get this code to work:
<!--phpBB Style Info Center-By Gunny-->
<!--Cali's MYO IC code MUST go directly below this markup-->
<table id="myoic" style="display: none;" border="0" width="100%" cellspacing="0" cellpadding="0" class="bordercolor">
<tr>
<td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td class="titlebg" align="left" colspan="2">
<font class="text1" size="2"><b><center><span style="margin-left: 25px;"></span>W H O ' S - O N L I N E</center></b></font>
</td>
</tr>
<tr>
<td class="windowbg" width="20" valign="middle" align="center">
</td>
<td class="windowbg2" valign="top" align="center">
<table width="98%" cellpadding="3" align="center">
<tr>
<td valign="top" align="left" width="60%">
<center><font size="1">There have been <span id="totalonline"></span> members active in the past 5 minutes and <span id="guestsonline"></span> guests visiting our site.<br />
<p><span id="onlinelist"></span></p>
<p><b style="color:#FF00FF">ADMIN</b> • <b style="color:#00FFFF">G-MOD</b> • <b style="color:#FFFF00">MOD</b></p><br /></center>
</td>
</tr>
<tr>
<td valign="top" align="left" width="60%">
<font class="text1" size="1"><b><center>R E A L M - S T A T I S T I C S</center></b></font>
<left><font size="1">We currently have <span id="totalmem"></span> members registered.<br /> Please welcome our newest member, <span id="newmem"></span><p>Our members have made a total of <span id="totalposts"></span> posts in <span id="totalthreads"></span> threads.<br /></p>
Most users ever online was <span id="mostonline"></span><br /></font></p></left>
</td>
</tr>
<tr>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
/* Make-Your-Own Info Center v1 by california
©2005 SoCal Codes, [a href="http://socal.proboards26.com"]http://socal.proboards26.com[/a] */
/* customization variables below */
// these two are just used for calculating averages (threads per board, etc.)
var numberOfCategories = 5;
var numberOfBoards = 10;
// used for the 'modifyprofile' ID as the hyperlink text
var modifyProfileText = "modify profile";
// used for the three comma seperated lists when there's nothing in the list
var noBirthdaysMessage = "There are no birthdays today."
var noEventsMessage = "There are no events this month.";
var noneOnlineMessage = "There are no users online right now.";
// used for the '[custom]online' IDs
// first part of each line determines what you use as the ID of the span tag in your markup
// second part of each line specifies what member group numbers go with that ID
memberGroups = [
['admins', '1'],
['gmods', '2|3'],
['mods', '4|5|6'] // last line doesn't get a comma
];
/* end customization */
document.write('<script type="text/javascript" src="http://www.iycatacombs.com/socal/resources/scripts/myoic.js"></scr'+'ipt>');
// -->
</script>
It's worked on my previous forums, so I have no clue. It is currently NOT in my main footer.
3. I can't get this code to work either, and it has also been used on other forums of mine and is NOT in my global header:
<script type="text/javascript">
<!--
// Created by PopThosePringles
// Size of the gap between categories
var gapSize = 27;
var tabHTML = '<td id="rr" colspan="5"></table></td></tr></table><div style="height:' + gapSize + '"></div><table width="100%" cellspacing="0" cellpadding="0" class="bordercolor"><tr><td><table cellpadding="4" cellspacing="1" width="100%"><tr>';
if(location.href.match(/\.com(\/|.+cgi(\?|#.+|\?\w+=home)?)?$/i)){
var tBod = document.getElementsByTagName("tbody");
for(tb = 0; tb < tBod.length; tb ++){
for(r = 2; r < tBod.item(tb).rows.length; r ++){
var tBodObj = tBod.item(tb).rows.item(r).cells.item(0);
if(tBodObj.className == "catbg" && tBodObj.colSpan == "5" && tBodObj.align != "right"){
var c = tabHTML + tBod.item(tb).firstChild.innerHTML + "</tr>";
var p = tBodObj.parentNode.innerHTML;
var tBodPar = tBod.item(tb).parentNode.parentNode.parentNode.parentNode.parentNode;
tBodPar.parentNode.innerHTML = tBodPar.parentNode.innerHTML.replace(p, c + p);
}
if(tBod.item(tb).rows.item(r).firstChild.id == "rr"){
tBod.item(tb).rows.item(r).style.display = "none";
}
}
}
}
//-->
</script>
Thanks for any help :3