I'd like to glow Groups please help me. 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.
3 posters

    I'd like to glow Groups please help me.

    Sumi Kitamura
    Sumi Kitamura
    New Member


    Female Posts : 16
    Reputation : 1
    Language : English
    Location : Colorado

    Solved I'd like to glow Groups please help me.

    Post by Sumi Kitamura May 30th 2017, 5:26 am

    Hello,

    I have been trying to figure out how to glow the entire group instead of each individual name.
    The u(ID#) for me works just fine, but when I try to use g3 for the entire names for the group it refuses to acknowledge it.
    I really don't want to sit there and glow or un-glow each username that joins or leaves a group I'd like it if it happened automatically if it's possible. I figured you can change the usernames colors that joins. So I believe you can do it with the glow. The groups NAME glows but not the users in the group.

    This works
    Code:
    a[href="/u1"]{ 
    text-decoration: none !important; 
    text-shadow: 0 0 0.6em black, 0 0 0.6em black, 0 0 0.6em white;
    }

    This Doesn't
    Code:
    a[href="/g3"]{ 
    text-decoration: none !important; 
    text-shadow: 0 0 0.6em yellow, 0 0 0.6em yellow, 0 0 0.6em black;
    }


    What I've tried.
    - "-hover" code after important code displaying both codes at the top of the CSS Style Sheet.
    - tried "g3-groupname"
    - tried just the group name
    - displaying different colors

    Forum: http://pokemongo-official.forumotion.com
    Version: phpbb2


    Last edited by Sumi Kitamura on May 30th 2017, 10:19 am; edited 3 times in total
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51499
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: I'd like to glow Groups please help me.

    Post by SLGray May 30th 2017, 7:01 am

    You will have to do that for each member of the group if you want their usernames to glow if you use CSS.



    I'd like to glow Groups please help me. Slgray10

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


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: I'd like to glow Groups please help me.

    Post by Draxion May 30th 2017, 8:17 am

    Hi there,

    You have to use this code to colorize all those usernames in a group according to the color.
    Code:
    a span[style="color:#C5CC00"] strong {
      text-decoration: none !important;
      text-shadow: 0 0 0.6em yellow, 0 0 0.6em yellow, 0 0 0.6em black;
    }

    Change the value '#C5CC00' to the color of the usergroup you want the effects on.
    Sumi Kitamura
    Sumi Kitamura
    New Member


    Female Posts : 16
    Reputation : 1
    Language : English
    Location : Colorado

    Solved Re: I'd like to glow Groups please help me.

    Post by Sumi Kitamura May 30th 2017, 9:23 am

    Draxion wrote:Hi there,

    You have to use this code to colorize all those usernames in a group according to the color.
    Code:
    a span[style="color:#C5CC00"] strong {
      text-decoration: none !important;
      text-shadow: 0 0 0.6em yellow, 0 0 0.6em yellow, 0 0 0.6em black;
    }

    Change the value '#C5CC00' to the color of the usergroup you want the effects on.

    No not what I'm looking for.
    You know when a user joins a group their default username color changes to the assigned group name color automatically?
    That's what I want for the glow effect as well.
    I'm having to manually change the glow effect on usernames when a user leaves or joins an open group. That would be a big hassle for me especially IF I manage to obtain a lot of users.

    If you did give me such a code I would need to direct it to a specific group.
    I'm not entirely familiar with CSS, I can only edit I can't create it.
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: I'd like to glow Groups please help me.

    Post by Draxion May 30th 2017, 9:28 am

    When the users leave the group, the effect shouldn't work since their colors change as well. And it should work vice versa when they join the group. There color changes and therefore they get the effect the CSS executes.
    Sumi Kitamura
    Sumi Kitamura
    New Member


    Female Posts : 16
    Reputation : 1
    Language : English
    Location : Colorado

    Solved Re: I'd like to glow Groups please help me.

    Post by Sumi Kitamura May 30th 2017, 9:41 am

    Okay, do I mash that code with the one I am using before it's the last brace?
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: I'd like to glow Groups please help me.

    Post by Draxion May 30th 2017, 9:43 am

    No, replace any you have that affects the usernames with the one I showed you here.
    Code:
    a span[style="color:#000"] strong {
      text-decoration: none !important;
      text-shadow: 0 0 0.6em yellow, 0 0 0.6em yellow, 0 0 0.6em black;
    }

    You change the color value according to the group you want to have the usernames affect.

    For example, if you want the glow to effect only those inside the Team Instinct group, you would change the color value to "#000".


    Last edited by Draxion on May 30th 2017, 10:17 am; edited 1 time in total
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: I'd like to glow Groups please help me.

    Post by Draxion May 30th 2017, 10:02 am

    I need to assist you on your forum.

    Solution

    There was an error in the CSS, that was fixed. And this code did the trick as stated above.
    Code:
    a span[style="color:#000000"] strong {
      text-decoration: none !important;
      text-shadow: 0 0 0.6em yellow, 0 0 0.6em yellow, 0 0 0.6em black;
    }
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: I'd like to glow Groups please help me.

    Post by Draxion May 30th 2017, 10:20 am

    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules