Multi-Colored Group Names? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Multi-Colored Group Names?

    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 07:28

    Hi I was wondering if there is anyway of getting Multiple colors into the group names of my forums
    Rhino.Freak
    Rhino.Freak
    Helper
    Helper


    Male Posts : 1248
    Reputation : 104
    Language : English
    Location : Mumbai, India

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by Rhino.Freak May 13th 2014, 07:46

    try this
    Code:
    $(function(){
    $('a[href="/g1-administrators"]').not(function(){return $("img",this)[0]}).html('<font color=red>ADMIN</font><font color=blue>inistrator</font>');
    });
    (put it in Javascripts management and tick for all pages)
    change "g1-administrators" to your own group link
    and <font color>,.....stuff to your own liking with colors and names.
    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 08:06

    How do I get my group link?
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51515
    Reputation : 3519
    Language : English
    Location : United States

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by SLGray May 13th 2014, 08:15

    By pressing the link to the group page and getting the information from the browser tab.



    Multi-Colored Group Names? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 08:22

    Ok, Can I use a hex code instead of just red and blue? And if so what would be the code
    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 08:26

    And also I was wondering if I could put multiple colors into my username. I have the same username on my forums but instead I would like to replace it with this

    -=:RF`SµrgE

    but I would like the color scheme to be 

    #993345-=#667788:RF`#993345S#667788µrgE
    Rhino.Freak
    Rhino.Freak
    Helper
    Helper


    Male Posts : 1248
    Reputation : 104
    Language : English
    Location : Mumbai, India

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by Rhino.Freak May 13th 2014, 08:58

    Yes you can use hex, and you can also make usernames multi colored by same script I posted above..
    just copy and paste it, and replace the group link by your profile link (/u1 for example)..

    please report back if it works Smile
    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 09:29

    ok well I am using this code to add multiple colors to my username and it will not work. It is a different name then what my username is though, so that may be the problem


    $(function(){
    $('a[href="/u1"]').not(function(){return $("img",this)[0]}).html('<strong><font color="#993345">-=</font><font color="#667788">:RF`</font><font color="#993345">S</font><font color="#667788">µrgE</font></strong>');
    });

    My forums is: riseoftron.com
    Rhino.Freak
    Rhino.Freak
    Helper
    Helper


    Male Posts : 1248
    Reputation : 104
    Language : English
    Location : Mumbai, India

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by Rhino.Freak May 13th 2014, 09:43

    It is possible because your username contains lots of symbols, try a simple username and see if it works.. multiple group names worked or that didnt as well?
    MadroX
    MadroX
    Forumember


    Posts : 39
    Reputation : 0
    Language : English

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by MadroX May 13th 2014, 09:53

    Ok I got it to work. For some reason it will not work when I click on "In all pages" I must select each page individually in the settings
    Pizza Boi
    Pizza Boi
    Hyperactive


    Male Posts : 2016
    Reputation : 160
    Language : French
    Location : Pizza Hut!

    Multi-Colored Group Names? Empty Re: Multi-Colored Group Names?

    Post by Pizza Boi May 13th 2014, 12:08

    Hi Very Happy

    For the multiple usernames, try this (If you're using phpBB2, this should work):

    Code:
    /--- Pizza Boi's tutoriel pour codes-ciel ---/
    /--- Ce code peut être autorisé à être reproduit avec le consentement de Pizza Boi ---/
    /--- Si ce code a déjà été faite, il s'agit d'une version différente ---/
    /--- Copyright @ Pizza Boi 2014 ---/
    $.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function() {
      var selectMoi= ["u#"];
      for(var i =0;i<selectMoi.length;i++)  {
      $('a[href="/'+selectMoi[i]+'"]').addClass('arcenciel');
      }
          $('.arcenciel').find('*').andSelf().contents().filter(function(){
          return this.nodeType===3;
          }).parent().text(function() {
          $(this).arcenciel({
            colors: [
            '#Color',
            '#Color',
            '#Color',
            '#Color',
            '#Color',
            '#Color',
            '#Color'
            ],
    });
    });
    });

    Apply it in ---

    AP < Modules < Javascript Management < Create a New Javascript < Title: User Color < Tick: In all Pages

    Make sure to change u# to the username you have.

    Note: This code only works for phpBB2 and will be buggy for others if it is applied.

    Regards,
    Pizza Boi