Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Results 1 to 10 of 10
  1. #1

    Default invision power board ledgend

    anyone know how to add an invision power board ledgend to the bottum of where it says active members, it would be grate help if anyone could tell me how! thanks!
    no y

  2. #2
    Join Date
    Dec 2004
    Posts
    115
    Tokens
    0

    Default

    soz Bud i int got a clue what u mean & im a expert with forums:|

    i need vb:@

  3. #3

    Default

    i mean like a thing that has the name colour at the bottem

    like

    Admin Moderator Special member
    no y

  4. #4
    Join Date
    Dec 2004
    Posts
    115
    Tokens
    0

    Default

    Ranks in different Colour phpbb that is M8y and

    thingy that can mean over 5400055 things

  5. #5
    Join Date
    Dec 2004
    Posts
    205
    Tokens
    0

    Default

    It's really quite simple.

    Log in to your Invision Admin Center. Under Users and Groups you will find "Manage User Groups".

    Edit, for example, Administrator.

    A part of the Global Settings will look like this:




    Now merely choose which color you want, and input <span style='color:yourcolor'> in the [Prefix] box. In the [Suffix] box you can close the tag; </span>

    To show which color means which group, I believe it depends on your skin.

  6. #6
    Join Date
    Jun 2004
    Posts
    1,809
    Tokens
    0

    Latest Awards:

    Default

    here is the code this goes in the board wrappers footer.

    <script>
    /*
    Colors Key and Users Online Modification

    By Webworldx

    Code created for iF. Do not redistribute
    */

    var Users = ["Administrator","Management","Moderator","Memb er"]
    var Colors = ["FF0000","0000FF","228b22","232c38"]


    var inputUsers=""
    for (a=0;a<Users.length;a++){
    inputUsers+="[<b><font color=#" + Colors[a] + ">" + Users[a] + "</font></b>] "
    }
    var tCell = document.getElementsByTagName('TD')
    for (i=0;i<tCell.length;i++){
    if (tCell[i].width=="95%" && tCell[i].innerHTML.match(/Anonymous Members/i)){
    tCell[i].innerHTML= tCell[i].innerHTML.replace(/<\/div>/i,"<br/><br/><b></b>" + inputUsers + "</div>")

    var eSplit = tCell[i].innerHTML.split(/<DIV/i)[0].split(' guests,')
    var memArray=new Array();
    memArray[0]=eSplit[0]
    eSplit=eSplit[1].split(' members,')
    memArray[1]=eSplit[0]
    eSplit=eSplit[1].split(' anonymous')
    memArray[2]=eSplit[0]

    eSplit = tCell[i].innerHTML.split(/<DIV/i)[0]
    tCell[i].innerHTML = tCell[i].innerHTML.replace(eSplit,"(<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Guests</font> - " + memArray[0] + ") (<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Members</font> - " + memArray[1] + ") (<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Hidden Users</font> - " + memArray[2] + ")")
    tCell[i].align="center"
    var xFind = tCell[i].getElementsByTagName('DIV')
    for (x=0;x<xFind.length;x++){
    if (xFind[x].className=="thin"){
    xFind[x].innerHTML="<b><i>Active Users : </i></b>" + xFind[x].innerHTML
    }}}}
    </script>

    bits in red you can edit
    70 Shaman
    70 Mage
    70 Rogue
    70 Druid
    70 Priest
    63 Paladin

  7. #7
    Join Date
    Nov 2004
    Location
    genrally in front of a 21inch monitor
    Posts
    292
    Tokens
    0

    Question

    Quote Originally Posted by jamie4k
    here is the code this goes in the board wrappers footer.

    <script>
    /*
    Colors Key and Users Online Modification

    By Webworldx

    Code created for iF. Do not redistribute
    */

    var Users = ["Administrator","Management","Moderator","Memb er"]
    var Colors = ["FF0000","0000FF","228b22","232c38"]


    var inputUsers=""
    for (a=0;a<Users.length;a++){
    inputUsers+="[<b><font color=#" + Colors[a] + ">" + Users[a] + "</font></b>] "
    }
    var tCell = document.getElementsByTagName('TD')
    for (i=0;i<tCell.length;i++){
    if (tCell[i].width=="95%" && tCell[i].innerHTML.match(/Anonymous Members/i)){
    tCell[i].innerHTML= tCell[i].innerHTML.replace(/<\/div>/i,"<br/><br/><b></b>" + inputUsers + "</div>")

    var eSplit = tCell[i].innerHTML.split(/<DIV/i)[0].split(' guests,')
    var memArray=new Array();
    memArray[0]=eSplit[0]
    eSplit=eSplit[1].split(' members,')
    memArray[1]=eSplit[0]
    eSplit=eSplit[1].split(' anonymous')
    memArray[2]=eSplit[0]

    eSplit = tCell[i].innerHTML.split(/<DIV/i)[0]
    tCell[i].innerHTML = tCell[i].innerHTML.replace(eSplit,"(<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Guests</font> - " + memArray[0] + ") (<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Members</font> - " + memArray[1] + ") (<img src='http://67.18.37.15/html/sys-img/item.gif'><font color=purple> Hidden Users</font> - " + memArray[2] + ")")
    tCell[i].align="center"
    var xFind = tCell[i].getElementsByTagName('DIV')
    for (x=0;x<xFind.length;x++){
    if (xFind[x].className=="thin"){
    xFind[x].innerHTML="<b><i>Active Users : </i></b>" + xFind[x].innerHTML
    }}}}
    </script>

    bits in red you can edit
    what is this about can i change the colour of ma name?
    ehh [<b><font color=#" + Colors[a] + ">" + Users[a] + "</font></b>]
    Last edited by miss-t; 12-12-2004 at 12:54 PM.
    "Somtimes its better to keep quiet and look like a fool than to open your mouth and remove all doubt"

  8. #8

    Default

    i know how to make name colours but i want a ledgent...
    no y

  9. #9
    Join Date
    Jun 2004
    Posts
    1,809
    Tokens
    0

    Latest Awards:

    Default

    what the thing at the bottom to say what coulrs mean what if so then thats it put it in the footer in the board wrappers.
    70 Shaman
    70 Mage
    70 Rogue
    70 Druid
    70 Priest
    63 Paladin

  10. #10
    Join Date
    Sep 2004
    Location
    USA
    Posts
    2,119
    Tokens
    1,371

    Latest Awards:

    Default

    Oh thanks!
    I have been looking for this code and I couldn't find it anywhere!
    Thanks


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •