Sufo
New Member
Extreme Web Designer and Scripter
Posts: 48
|
Post by Sufo on Mar 8, 2006 17:02:52 GMT -5
As the subject states this is very random but I just thought of how much I want to mod-up this forum (not be a moderator but make the forum look different.)
I know so many codes and script that would make this forum look awsome since its Proboards. lol
|
|
|
Post by TinyTerror on Mar 8, 2006 22:49:27 GMT -5
I'm open to suggestions.
|
|
Sufo
New Member
Extreme Web Designer and Scripter
Posts: 48
|
Post by Sufo on Mar 8, 2006 23:29:33 GMT -5
well first of all you could move arround the logo and message with this code by adding it to the global header that can be found in your admin panel:
<script type="text/javascript"> <!-- document.getElementsByTagName('td')[2].style.display="none"; //--> </script>
<script> // 0=above header, 1=above menu, 2=below menu var pmPos="2"; // PM Row Class var pmClass="catbg"; // PM Row Height var pmHeight="20";
// 1=text links, 2=image links var pmType="1";
// Text Variables var noNewPmText="No New Messages in your Inbox."; var oneNewPmText="1 New Message in your Inbox!"; var manyNewPmText="Multiple New Messages in your Inbox!"; var guestPmText="Please login or register.";
// Image Variables var noNewPmImage="No New Pms Image"; var oneNewPmImage="1 New Pm Image"; var manyNewPmImage="Many New Pms Image"; var guestPmImage="Guest Login Image";
var Table=document.getElementsByTagName("Table"); var welcomeMessage=document.getElementsByTagName("TD")[2].innerHTML; var pmRow=Table[0].insertRow(pmPos).insertCell(0); pmRow.className=pmClass; pmRow.height=pmHeight; if(pmType=="1"){ if(welcomeMessage.match(/(\d+)(\s)(is|are)(\s)new./i)){ var newPM=RegExp.$1 if(newPM==0){ pmRow.innerHTML="<a href='/index.cgi?action=pm'>"+noNewPmText+"</a>"; } else if(newPM==1){ pmRow.innerHTML="<a href='/index.cgi?action=pm'>"+oneNewPmText+"</a>"; } else { pmRow.innerHTML="<a href='/index.cgi?action=pm'>"+manyNewPmText+"</a>"; } } else { pmRow.innerHTML=guestPmText; } } if(pmType=="2"){ if(welcomeMessage.match(/(\d+)(\s)(is|are)(\s)new./i)){ var newPM=RegExp.$1 if(newPM==0){ pmRow.innerHTML="<a href='/index.cgi?action=pm'><img src='"+noNewPmImage+"' border='0'></a>"; } else if(newPM==1){ pmRow.innerHTML="<a href='/index.cgi?action=pm'><img src='"+oneNewPmImage+"' border='0'></a>"; } else { pmRow.innerHTML="<a href='/index.cgi?action=pm'><img src='"+manyNewPmImage+"' border='0'></a>"; } } else { pmRow.innerHTML="<a href='/index.cgi?action=login'><img src='"+guestPmImage+"' border='0'></a>"; } } </script>
an example of what it does can be found here: anyanimeavvies.proboards78.com/index.cginotice how the logo was centered. and where it asks you to login/register thats where it would tell you whether you have a PM or not.
|
|
Sufo
New Member
Extreme Web Designer and Scripter
Posts: 48
|
Post by Sufo on Mar 8, 2006 23:31:03 GMT -5
Another good idea would to go to your admin panel then General Settings..... and where it says Show Info Center click no.
|
|
Sufo
New Member
Extreme Web Designer and Scripter
Posts: 48
|
Post by Sufo on Mar 8, 2006 23:32:08 GMT -5
Oh and you can have your menu as just text (imo it looks better) by going to general settings then Text Menus and click yes.
|
|
Sufo
New Member
Extreme Web Designer and Scripter
Posts: 48
|
Post by Sufo on Mar 8, 2006 23:32:58 GMT -5
Also if you want the color scheme to have gradients PM me about that. It looks pretty good with Gradients and a matching background.
|
|